These examples all use UNIX extended regular expression syntax.
[A-Z][a-z]+
and replace with the same word all in upper case:
\U&
\<[a-z][ a-zA-Z0-9]*
and make the first letter upper case:
\u&
\([0-9]+\) +\([0-9]+\)
and swap them around, using a tab to separate them:
\2\t\1
paste
and replace with the contents of the clipboard:
\p
X100000 | to | X100.000 |
Y100123 | Y100.123 | |
Z600 | Z.600 |
Find: | \([XYZ]\)\([0-9]*\)\([0-9][0-9][0-9]\) |
Replace: | \1\2.\3 |