In news:[EMAIL PROTECTED], David Teague <[EMAIL PROTECTED]> typed: > I have some C++ code with annoyingly many spaces of > indentation. > > I want to replace the leading 8 spaces with 4. If I use eight of the > regular expression [:space:]?, as
Do you even need to use the [:space:] "character"? Try in the search field: ^ followed by 8 spaces (just using the spacebar) In the replace field: four spaces. Tick regular expressions. Should replace leading 8 spaces with four. Bob Long --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
