- Aug
- 2,799
- 144
ReplaceText allows me to replace a space with a + sign in a string.
With clipboard contents of
ReplaceText also allows input from STDIN
A handy little command for quick changes in a string.
Joe
With clipboard contents of
Code:
19.62 19.95 19.64 19.90
Code:
R:\>replacetext clip: /C /R:\x20:\x2B
19.62+19.95+19.64+19.90
ReplaceText also allows input from STDIN
Code:
R:\>replacetext /C /R:\x20:\x2B
Reading text from the console: (^Z ends)
19.62 19.95 19.64 19.90
^Z
19.62+19.95+19.64+19.90
A handy little command for quick changes in a string.
Joe