If I have the following string:
var str = "Test.aspx?ID=11&clicked=false+5+3";
str = str.replace(????????, 'true');
How can I replace the substring "false+5+3" with "true" using REGEX?
Thanks in advance!!!
|
If I have the following string:
How can I replace the substring "false+5+3" with "true" using REGEX? Thanks in advance!!! |
|||
|
|
this will replace anything in clicked parameter, not only false+... |
|||
|
|
You need to escape the |
|||
|
|||
|
|