theunknownknight
MIS
1. I have a multiline text.
2. The text is put in a string variable.
3. I am trying to take everything out of the string except letters.
4. I am using the indexof Property
Problem,
I want to remove the quotations from the string. For instance if someone writes "Hi the, Jack said "Hi too"", I need to be able to take the two extra "s out.
I tried this string.indexof(""" and recieved an error.
My question is, how do you find a quotation mark in a string using the indexof method?
2. The text is put in a string variable.
3. I am trying to take everything out of the string except letters.
4. I am using the indexof Property
Problem,
I want to remove the quotations from the string. For instance if someone writes "Hi the, Jack said "Hi too"", I need to be able to take the two extra "s out.
I tried this string.indexof(""" and recieved an error.
My question is, how do you find a quotation mark in a string using the indexof method?