Forum Discussion
daniils21
Jul 02, 2023Copper Contributor
using wildcards in word
Hello! I need to change decimal character from dot to comma in document in all the numbers. The expression i use for this FIND: ([0-9]{1;}). REPLACE: \1, it works but in my mother tongue Latvian...
Jul 03, 2023
daniils21 For Find, use
FIND: ([0-9]{1;3}).
That will find from 1 to 3 numbers, but not 4 numbers, followed by a dot, but not 4 numbers.