QUERY: strip trailing whitespace ... woes :S



 DEVELOP > c-Plus-Plus > QUERY: strip trailing whitespace ... woes :S

LINK TO THIS PAGE  


rating :  0   |  0


  Page 1 of 1

1

 
Topic: DEVELOP > c-Plus-Plus
User: "KevinGPO"
Date: 20 Feb 2006 06:18:10 AM
Object: QUERY: strip trailing whitespace ... woes :S
I am wondering about what's the best and easiest way to strip trailing
whitespace from every single file in a folder, recursively.
I want to write a program/script so that you pass in a folder name and
it'll recursively go through all sub-folders and strips trailing
whitespace from every single file.
Trailing whitespace includes:
1. whitespaces at end of text lines, strip whitespace but retain text
2. whitespaces on empty lines, strip whitespace but leave the empty
line
.

User: "Richard Herring"

Title: Re: QUERY: strip trailing whitespace ... woes :S 20 Feb 2006 07:48:32 AM
In message <1140437890.269200.101610@g14g2000cwa.googlegroups.com>,
KevinGPO <kevingpo@hotmail.com> writes

I am wondering about what's the best

Define "best". Fastest? Easiest to code?

and easiest

For the programmer or for the user?

way to strip trailing
whitespace from every single file in a folder, recursively.

I want to write a program/script so that you pass in a folder name and
it'll recursively go through all sub-folders and strips trailing
whitespace from every single file.

Standard C++ has no concept of "folder", "sub-folder" or even "every ...
file", so the solution is inevitably going to be platform-dependent and
off topic here. You might do better with a scripting language - for
example, perl has easy ways of applying operations to all matching
files.

Trailing whitespace includes:

1. whitespaces at end of text lines, strip whitespace but retain text
2. whitespaces on empty lines, strip whitespace but leave the empty
line

2 is just the special case of 1 when the text is of zero size. No need
to treat it specially.
std::string has lots of functions that might help - find_last_not_of,
for example.
--
Richard Herring
.


  Page 1 of 1

1

 


Related Articles
 

NEWER

pg.1232     pg.940     pg.716     pg.544     pg.412     pg.311     pg.234     pg.175     pg.130     pg.96     pg.70     pg.50     pg.35     pg.24     pg.16     pg.10     pg.6     pg.3     pg.1

OLDER