thousand points find an replace
-
Hello community,
i need to find and replace the thousand points.From:
10.046,46
10.026,15
9.998,46
9.998,46To:
10046,46
10026,15
9998,46
9998,46Can anyone help me please?
Thank you
-
@benjamin-wüsthofen said in thousand points find an replace:
A possible solution could be a regular expression like
find:
\b\d+\K\.(?=\d{3})\b
and replace with nothing.Because the regular expression uses \K notation, you cannot replace each occurrence by going through the matches, but must use the “Replace All” button.
-