Answers for "how to remove given char from string in c"

C
2

delete string function in c

/*The logic behind the function is to copy and place the ending part of string
along with the deliminator '' to the position from where you want the 
"no_of_char" number of characters removed*/

void delchar(char *string,int starting_pos, int no_of_char)
{
  if (( starting_pos + no_of_char - 1 ) <= strlen(x) )
  {
    strcpy(&x[starting_pos-1],&x[starting_pos + no_of_char-1]);
    puts(x);
    }
}
Posted by: Guest on June-21-2020
0

remove char from string

def replace_(input_:str,latter:int):
    name_ = ""
    checkList=[]
    for num in range(latter):
        checkList.append(num)
    for i in range(0, len(input_)):
        if i not in checkList:
            name_ = name_ + input_[i]
    return  name_

name_=replace_("give hello",5)
print(name_) #will print hello
Posted by: Guest on June-05-2021

Code answers related to "how to remove given char from string in c"

Code answers related to "C"

Browse Popular Code Answers by Language