- Aug
- 2,256
- 108
Code:
TCC v34.00.14
Windows 10
The TPIPE help says;
Converts all text to Sentence case ie the first word in every sentence is capitalized, all other letters are left as is. Sentences start after periods, exclamation marks, colons, question marks, quotes, parentheses and angle brackets (.!:?'"<().
My emphasis on the all other letters are left as is.
If I have input.txt as follows;
Converts ALL text to Sentence case ie the first word in every sentence is capitalized, ALL other letters are left as is. sentences start after periods, exclamation marks, colons, question marks, quotes, parentheses and angle brackets (.!:?'"<().
Note that I have two occurrences of ALL in input.txt
Running the following command;
Code:
tpipe /input=input.txt /simple=8
Converts all text to sentence case ie the first word in every sentence is capitalized, all other letters are left as is. Sentences start after periods, exclamation marks, colons, question marks, quotes, parentheses and angle brackets (.!:?'"<().
Note that I had two occurrences of ALL that have been converted to all.
If all other letters are left as is,
as the help indicates,
why were the two occurrences of ALL converted to all?
Joe