Hi,
I have following string data
Amol\'Lokhande. Now I want to search \' from the string.
I have used following code
but still it is not working. Can anybody help me to resolve this problem.
What will be the regular expression to search \' string
Regards
Amol Lokhande
I have following string data
Amol\'Lokhande. Now I want to search \' from the string.
I have used following code
Code:
sValue="Amol\'Lokhande"
var objRegex =new RegExp("\\\\'","g");
sValue.search(objRegex)
What will be the regular expression to search \' string
Regards
Amol Lokhande
Comment