Switch to full style
C++ code examples
Post a reply

Remove Indentation

Thu Nov 13, 2008 2:24 pm

removes any indentation and blank lines from strings input using C++
cpp code
/* This program removes any indentation and blank lines from its input. */

#include <iostream>
#include <cctype>

using namespace std;

int main()
{
char inch; // Input character.
bool suppressing = true; // Currently suppressing leading space.

while(cin.get(inch)) {
/* At the end of a line, if we have suppressed up to this
point, squash the newline, too, to eliminate the whole
line. Otherwise, begin suppression for the next line. */
if(inch == '\n')
if(suppressing)
continue;
else
suppressing = true;
else
/* Not end-of-line. See if we are worrying about
suppressing spaces right now. */
if(suppressing)
/* We are suppressing spaces. If it's a space,
squash it; if not, we aren't suppressing
anymore. */
if(isspace(inch))
continue;
else
suppressing = false;

/* If we got here, this character should not be suppressed. */
cout << inch;
}
}


It's also worth noting the way this program uses the continue directive. The loop test reads the next character, entering the loop if there is one. The character is then printed at the end of the loop. Since the continue statement transfers control directly to the loop test, it has the effect of skipping the output and proceeding to the next character.



Post a reply
  Related Posts  to : Remove Indentation
 remove page title     -  
 Remove all the vowels from a string     -  
 Remove ordered list numbers     -  
 Remove a portion of the array and replace it with something     -  
 Add and Remove CSS classes to html tag dynamically     -  
 Remove border of the linked image     -  
 Remove default window icon from JFrame     -  
 Remove HTML element or Delete its content     -  
 How to remove special characters from a string in Java?     -  
 How to delete/remove images from excel 2007 using POI.     -  

Topic Tags

C++ Strings