如何从字符串中删除字符?
如果我有字符串"abcdef"
,我想删除"b"
我该怎么做?
使用以下代码轻松删除第一个字符:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
char word[] = "abcdef";
char word2[10];
strcpy(word2,&word[1]);
printf("%s\n", word2);
return 0;
}
和
strncpy(word2,word,strlen(word)-1);
会给我不带 last 字符的字符串,但我仍然没有弄清楚如何删除字符串的中间中的字符。
答案 0 :(得分:57)
memmove
可以处理重叠区域,我会尝试类似的东西(未测试,可能+ -1问题)
char word[] = "abcdef";
int idxToDel = 2;
memmove(&word[idxToDel], &word[idxToDel + 1], strlen(word) - idxToDel);
之前:"abcdef"
之后:"abdef"
答案 1 :(得分:37)
试试这个:
void removeChar(char *str, char garbage) {
char *src, *dst;
for (src = dst = str; *src != '\0'; src++) {
*dst = *src;
if (*dst != garbage) dst++;
}
*dst = '\0';
}
测试程序:
int main(void) {
char* str = malloc(strlen("abcdef")+1);
strcpy(str, "abcdef");
removeChar(str, 'b');
printf("%s", str);
free(str);
return 0;
}
结果:
>>acdef
答案 2 :(得分:9)
我删除所有指定字符的方法:
void RemoveChars(char *s, char c)
{
int writer = 0, reader = 0;
while (s[reader])
{
if (s[reader]!=c)
{
s[writer++] = s[reader];
}
reader++;
}
s[writer]=0;
}
答案 3 :(得分:5)
char a[]="string";
int toBeRemoved=2;
memmove(&a[toBeRemoved],&a[toBeRemoved+1],strlen(a)-toBeRemoved);
puts(a);
试试这个。 memmove 会重叠它。 测试
答案 4 :(得分:4)
int chartoremove = 1;
strncpy(word2,word,chartoremove);
strncpy(((char*)word2)+chartoremove,((char*)word)+chartoremove+1,strlen(word)-1-chartoremove);
丑陋地狱
答案 5 :(得分:4)
真的很惊讶,之前没有发布过。
strcpy(&str[idx_to_delete], &str[idx_to_delete + 1]);
非常高效和简单。 strcpy
在大多数实施中使用memmove
。
答案 6 :(得分:2)
以下将通过从第一个字符串参数中删除第二个字符串参数中出现的任何字符来稍微扩展问题。
/*
* delete one character from a string
*/
static void
_strdelchr( char *s, size_t i, size_t *a, size_t *b)
{
size_t j;
if( *a == *b)
*a = i - 1;
else
for( j = *b + 1; j < i; j++)
s[++(*a)] = s[j];
*b = i;
}
/*
* delete all occurrences of characters in search from s
* returns nr. of deleted characters
*/
size_t
strdelstr( char *s, const char *search)
{
size_t l = strlen(s);
size_t n = strlen(search);
size_t i;
size_t a = 0;
size_t b = 0;
for( i = 0; i < l; i++)
if( memchr( search, s[i], n))
_strdelchr( s, i, &a, &b);
_strdelchr( s, l, &a, &b);
s[++a] = '\0';
return l - a;
}
答案 7 :(得分:1)
#include <stdio.h>
#include <string.h>
int main(){
char ch[15],ch1[15];
int i;
gets(ch); // the original string
for (i=0;i<strlen(ch);i++){
while (ch[i]==ch[i+1]){
strncpy(ch1,ch,i+1); //ch1 contains all the characters up to and including x
ch1[i]='\0'; //removing x from ch1
strcpy(ch,&ch[i+1]); //(shrinking ch) removing all the characters up to and including x from ch
strcat(ch1,ch); //rejoining both parts
strcpy(ch,ch1); //just wanna stay classy
}
}
puts(ch);
}
假设x是&#34;符号&#34;你要删除的角色 ,我的想法是将字符串分为两部分:
第1部分将计算从索引0到目标字符x的所有字符(包括)。
第二部分计算x之后的所有字符(不包括x)
现在你所要做的就是重新加入这两个部分。
答案 8 :(得分:1)
修改:根据最新版本的库更新代码package.Config
。
来自BS的BSD许可字符串处理库,名为zString
https://github.com/fnoyanisi/zString
删除角色的功能
zstring_remove_chr()
Exmaple Usage
int zstring_search_chr(char *token,char s){
if (!token || s=='\0')
return 0;
for (;*token; token++)
if (*token == s)
return 1;
return 0;
}
char *zstring_remove_chr(char *str,const char *bad) {
char *src = str , *dst = str;
/* validate input */
if (!(str && bad))
return NULL;
while(*src)
if(zstring_search_chr(bad,*src))
src++;
else
*dst++ = *src++; /* assign first, then incement */
*dst='\0';
return str;
}
示例输出
char s[]="this is a trial string to test the function.";
char *d=" .";
printf("%s\n",zstring_remove_chr(s,d));
答案 9 :(得分:1)
此代码将删除您从字符串
输入的所有字符#include <stdio.h>
#include <string.h>
#define SIZE 1000
char *erase_c(char *p, int ch)
{
char *ptr;
while (ptr = strchr(p, ch))
strcpy(ptr, ptr + 1);
return p;
}
int main()
{
char str[SIZE];
int ch;
printf("Enter a string\n");
gets(str);
printf("Enter the character to delete\n");
ch = getchar();
erase_c(str, ch);
puts(str);
return 0;
}
输入
a man, a plan, a canal Panama
输出
A mn, pln, cnl, Pnm!
答案 10 :(得分:0)
我知道这个问题已经很老了,但是我将在这里保留实现:
char *ft_strdelchr(const char *str,char c)
{
int i;
int j;
char *s;
char *newstr;
i = 0;
j = 0;
// cast to char* to be able to modify, bc the param is const
// you guys can remove this and change the param too
s = (char*)str;
// malloc the new string with the necessary length.
// obs: strcountchr returns int number of c(haracters) inside s(tring)
if (!(newstr = malloc(ft_strlen(s) - ft_strcountchr(s, c) + 1 * sizeof(char))))
return (NULL);
while (s[i])
{
if (s[i] != c)
{
newstr[j] = s[i];
j++;
}
i++;
}
return (newstr);
}
将不等于您要删除的字符的字符扔到新字符串中。
答案 11 :(得分:0)
这是你可能正在寻找的,而反击是指数。
#include <stdio.h>
int main(){
char str[20];
int i,counter;
gets(str);
scanf("%d", &counter);
for (i= counter+1; str[i]!='\0'; i++){
str[i-1]=str[i];
}
str[i-1]=0;
puts(str);
return 0;
}
答案 12 :(得分:0)
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX 50
void dele_char(char s[],char ch)
{
int i,j;
for(i=0;s[i]!='\0';i++)
{
if(s[i]==ch)
{
for(j=i;s[j]!='\0';j++)
s[j]=s[j+1];
i--;
}
}
}
int main()
{
char s[MAX],ch;
printf("Enter the string\n");
gets(s);
printf("Enter The char to be deleted\n");
scanf("%c",&ch);
dele_char(s,ch);
printf("After Deletion:= %s\n",s);
return 0;
}
答案 13 :(得分:0)
如果你传递索引,这可能是最快的一个:
void removeChar(char *str, unsigned int index) {
char *src;
for (src = str+index; *src != '\0'; *src = *(src+1),++src) ;
*src = '\0';
}
答案 14 :(得分:0)
另一个解决方案,使用memmove()以及index()和sizeof():
char buf[100] = "abcdef";
char remove = 'b';
char* c;
if ((c = index(buf, remove)) != NULL) {
size_t len_left = sizeof(buf) - (c+1-buf);
memmove(c, c+1, len_left);
}
buf []现在包含“acdef”
答案 15 :(得分:0)
我尝试使用strncpy()
和snprintf()
。
int ridx = 1;
strncpy(word2,word,ridx);
snprintf(word2+ridx,10-ridx,"%s",&word[ridx+1]);
答案 16 :(得分:0)
以下应该这样做:
#include <stdio.h>
#include <string.h>
int main (int argc, char const* argv[])
{
char word[] = "abcde";
int i;
int len = strlen(word);
int rem = 1;
/* remove rem'th char from word */
for (i = rem; i < len - 1; i++) word[i] = word[i + 1];
if(i < len) word[i] = '\0';
printf("%s\n", word);
return 0;
}
答案 17 :(得分:0)
使用strcat()
连接字符串。
但strcat()
不允许重叠,因此您需要创建一个新字符串来保存输出。
答案 18 :(得分:-1)
这就是我在c ++中实现相同的方法。
#include <iostream>
#include <cstring>
using namespace std;
int leng;
char ch;
string str, cpy;
int main() {
cout << "Enter a string: ";
getline(cin, str);
leng = str.length();
cout << endl << "Enter the character to delete: ";
cin >> ch;
for (int i=0; i<leng; i++) {
if (str[i] != ch)
cpy += str[i];
}
cout << endl << "String after removal: " << cpy;
return 0;
}
答案 19 :(得分:-3)
一种方便,简单,快速的方法来摆脱\ 0是在strncpy而不是strcpy的帮助下复制没有最后一个字符串(\ 0)的字符串:
strncpy(newStrg,oldStrg,(strlen(oldStrg)-1));