#HELP ME..............................
-
I want change this:
“priceMax”:2.1}"
“priceMax”:1.1}"
“priceMax”:3.1}"To this:
“priceMax”:0.1}"
“priceMax”:0.1}"
“priceMax”:0.1}"THANK YOU
-
If you really have smart quotes in your data (doubful, but it’s what you posted):
- FIND =
“priceMax”:\K\d+\.\d+
- REPLACE =
0.1
- SEARCH MODE = regular expression
- REPLACE ALL (because of \K, single replacement won’t work as expected)
If you actually have ASCII quotes in the data
- FIND =
"priceMax":\K\d+\.\d+
- everything else the same
----
Useful References
- FIND =
-
This post is deleted! -
This post is deleted! -
-