Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,868 questions

51,791 answers

573 users

How to remove "\r\n\t" from a string in C

2 Answers

0 votes
#include <stdio.h>
#include <ctype.h>

int main(void) {
	char s[] = "php \r\n javascript nodejs \r\n c \t\t c++ python \r\n c#\n";
	char *p = s;

	while (*p) {
		if ((*p == '\t') || (*p == '\r') || (*p == '\n')) {
			*p = ' ';
		}
		p++;
	}
	  
	puts(s);
	
	return 0;
}

  

   
/*
run:
   
php    javascript nodejs    c    c++ python    c#
   
*/

 



answered Jun 24, 2020 by avibootz
0 votes
#include <stdio.h>
#include <ctype.h>
#include <string.h>

void remove_extra_spaces(char *s) {
    char *p;
     
    while ((p = strstr(s, "  "))) {
        strcpy(p, p + 1);
    }
    if (s[0] == ' ') strcpy(s, s + 1);
    if (s[strlen(s) - 1] == ' ') s[strlen(s) - 1] = '\0';
}
int main(void) {
	char s[] = "php \r\n javascript nodejs \r\n c \t\t c++ python \r\n c#\n";
	char *p = s;

	while (*p) {
		if ((*p == '\t') || (*p == '\r') || (*p == '\n')) {
			*p = ' ';
		}
		p++;
	}
	  
	remove_extra_spaces(s);
	
	puts(s);
	
	return 0;
}

  

   
/*
run:
   
php javascript nodejs c c++ python c#
   
*/

 



answered Jun 24, 2020 by avibootz

Related questions

2 answers 210 views
2 answers 178 views
178 views asked Jun 24, 2020 by avibootz
2 answers 202 views
2 answers 230 views
230 views asked Sep 10, 2019 by avibootz
...