ASPnetNovice
Programmer
Hello
I have the following problem
I have a string that looks like this:
myString = "bla bla bla" some other text "bla bla bla"
I need to split the string in such a way that the delimiter is the double quotes
I have try something like the following :
myString.Split("/"")
but it doesn't work
How can this be done?
I have the following problem
I have a string that looks like this:
myString = "bla bla bla" some other text "bla bla bla"
I need to split the string in such a way that the delimiter is the double quotes
I have try something like the following :
myString.Split("/"")
but it doesn't work
How can this be done?