Spliy by double quotes

how can I divide a string variable like this

Chiapas"

the variable double quotes and I just want the word

Chiapas

Assume the string is stored in a variable (str) of type string , then you can do that as

str = str.replace(“”“,”")

I tried but he gave me this

Try this :slight_smile:

str.Replace(“”“”,“”)

2 Likes

yes it work thanks

2 Likes

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.