Hi!
How to search the string which contains a question mark character?
for example there is a string:
String string="http://www.mydomain.com/results?query=v&aq=f";
I want to search the following text into the string :
"results?query=v"
but the find result is false!
After that I was trying to change the searched text to:
"results\?query=v"
but I get an error this time:
illegal escape character
Can somebody help me?