Page 1 of 1

Using Add Word Space

PostPosted: Tue Apr 12, 2011 2:24 am
by CTC
Is there any way to use add (7) > Word Space in the command line batch file?

Re: Using Add Word Space

PostPosted: Sun Jul 06, 2014 4:43 am
by truth
Regex can convert LowerUpper -> Lower Upper
But each occurence of LowerUpper requires another /regexp: to be converted.

An example using 3 identical regexp's:
BRC32 /regexp:"(.*[a-z])([A-Z].+):\1 \2" /regexp:"(.*[a-z])([A-Z].+):\1 \2" /regexp:"(.*[a-z])([A-Z].+):\1 \2"

It converts a max of 3-occurences, just add more /regex's to increase the max.