Hello everybody
This is my first post.
i have a problem where i have som log files where i need to remove sensitive data before sending them further down the line.
the line i want to replace is: “cpr”: “xxxxxx-xx”
where i want to replace all the x’s with the string value “null”
im using modify text and find and replace. and i need a way to search between the to double qoutes, like a non greedy selector kinda thing where “x” is
in “search for” im using follow method :
chr(34)+“Cpr”+chr(34)+": "+chr(34)+“X”+chr(34)
and in “replace with” im using the follow method :
chr(34)+“Cpr”+chr(34)+": "+chr(34)+“Null”+chr(34)
to sum up i need to find a way to search the “X” wich is inbetween the two chr(34) wich present double qoutes