C-language trim, LTrim, RTrim

Source: Internet
Author: User
Tags rtrim

Time to write a C-language trim (), LTrim (), RTrim (), the code is as follows:

#include <iostream> using namespace std; char * LTRIM (char * line)//remove spaces {while isspace (*line)) line++ ; return line; char * RTrim (char * line)//Remove the end of the string spaces {char *end = line + strlen (line)-1 while (End > Line && isspace ( *end)) {*end = '/0 '; end--} return line; } char * Trim (char *line)//Remove the top and last spaces of the string {if (strlen (line) > 0) {while (Isspace (*line))//Remove the front spaces line++; Char *e nd = line + strlen (line)-1; while (End > Line && isspace (*end))//Remove the last spaces {*end = '/0 '; end--;}} return line; } void Run (char *line, int flag = 0) {switch (flag) {Case 0:line = Trim (line); Case 2:line = RTrim (line); Break Default:break; } cout<< "#" <<line<< "#" <<endl; } void Main () {int flag = 2;//When testing different functions, just modify the value here char line[256]; while (Cin.getline (line, 256, '/n ')) {if (flag = = 1 | | strcmp (line, "exit") = = 0) break; Run (line, flag); } }

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.