Quote:
Originally Posted by romanticbiro
if the number 10:50 need to be 50:10
this work or need to change thing?
another point, is any solution let word show numbers from right to left as we wrote? to not need to write wrong to show right
many thanks again
|
Did you
try the macro?
FWIW, the equivalent
wildcard Find/Replace without using a macro is:
Code:
Find = ([0-9]{1,})(:)([0-9]{1,})
Replace = \3\2\1
However, both that and the macro are dependent on your PC's regional settings. A
wildcard Find/Replace that should work independently of your regional settings is:
Code:
Find = (<[0-9]@)(:)([0-9]@>)
Replace = \3\2\1
You could also use the same expressions in the macro.