


Write a program to remove specified characters from a string
How to write a program in C language to delete specified characters from a string
Deleting specific characters from the character array can be achieved by the following method: use a for loop to traverse the character array, determine whether each character is the specified character to be deleted, and if not, output the character. This will remove the specified character from the character array.
#include
int main()
{
char str[100],c;
int j,k;
printf("please input a string:");
gets(str);
printf("\nEnter a character:");
c=getchar();
for(j=k=0;str[j]!='\0';j )
if(str[j]!=c)
str[k ]=str[j];
str[k]='\0';
printf("\n%s",str);
}
please input a string:wqeqwe <p>Enter a character:w</p> <p>qeqePress any key to continue</p> <p>c language</p> <p>C language is a general computer programming language with a wide range of applications. The design goal of the C language is to provide a programming language that can be easily compiled, handle low-level memory, generate a small amount of machine code, and can run without any runtime environment support. </p> <p>Although C language provides many low-level processing functions, it still maintains good cross-platform characteristics. C language programs written in a standard specification can be compiled on many computer platforms, even including some embedded processors. (Single-chip microcomputer or MCU) and supercomputers and other operating platforms. </p> <h2>Delete a character in a string </h2><p>rv2001, you changed my first question, but you haven’t changed the second question yet:)</p> <p>2. There is i in while. When b[i]==c comparison is performed, i has been moved to the back. If abcde is entered like this, the result will definitely be wrong when a is deleted. </p> <p>I have tested the following:</p> <p>#include <iostream.h></iostream.h></p> <p>void main()</p> <p>{</p> <p>char c;</p> <p>char b[100]; //String </p> <p>char m[100];//Save the string after deleting characters</p> <p>cin>>b; //Input string </p> <p>cin>>c; //Enter the string to be deleted </p> <p>int i=0;</p> <p>int j=0;</p> <p>while(b[i]!='\0'){</p> <p>if(b[i]!=c)m[j ]=b[i];</p> <p>i ;</p> <p>}</p> <p>m[j]='\0';</p> <p>cout </p><p>}</p> <p> In addition, the poster did not explain the meaning of the question. Should he delete only one character or delete all characters? </p> <h2>Methods to remove characters from a string </h2><p>#include <stdio.h></stdio.h></p> <p>#include <conio.h></conio.h></p> <p>void main()</p> <p>{</p> <p>char s[80],ch;</p> <p>int i,j=0;</p> <p>printf("Please input a string:");/*Enter a string*/</p> <p>gets(s);</p> <p>printf("please input a character:"); /*Enter the character you want to delete*/</p> <p>ch=getchar();</p> <p>for(i=0;s[i]!='\0';i )</p> <p>if(s[i]!=ch)</p> <p>s[j ]=s[i];</p> <p>s[j]='\0';</p> <p>printf("%s\n",s);/*Output the string after deleting the specified characters*/</p> <p>getch();</p> <p>}</p> <p>This way you can delete any characters you want to delete. </p>
The above is the detailed content of Write a program to remove specified characters from a string. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Article discusses editing Windows Registry, precautions, backup methods, and potential issues from incorrect edits. Main issue: risks of system instability and data loss from improper changes.

Article discusses managing Windows services for system health, including starting, stopping, restarting services, and best practices for stability.

The Steam Cloud error can be caused by many reasons. To play a game smoothly, you need to take some measures to remove this error before you launch the game. php.cn Software introduces some best ways as well as more useful information in this post.

You may see the “A connection to the Windows Metadata and Internet Services (WMIS) could not be established.” error on Event Viewer. This post from php.cn introduces how to remove the Windows Metadata and Internet Services problem.

Article discusses changing default apps for file types on Windows, including reverting and bulk changes. Main issue: no built-in bulk change option.

KB5035942 update issues - crashing system commonly happens to users. Inflicted people hope to find a way out of the kind of trouble, such as crashing system, installation, or sound issues. Targeting these situations, this post published by php.cn wil

The article explains how to use the Group Policy Editor (gpedit.msc) in Windows for managing system settings, highlighting common configurations and troubleshooting methods. It notes that gpedit.msc is unavailable in Windows Home editions, suggesting

Chris Titus Tech has a tool called Windows Utility that can help you easily create a debloated Windows 11/10 ISO to install a clean system. php.cn offers a full guide on how to do this thing using the Chris Titus tool.
