I want to assign a value to a string where the value will have doublequotes too.ex :dim str1 as stringstr1 = " "abcd" "How do I do this? Please help me if anybody knows how to do this.
You double the quotes inside the quotes like this:str1 = """abcd"""Or if you wanted spaces at the start and end of the stringstr1 = " ""abcd"" "