Answers for "howt get rid of a charcheter in a sting"

8

delete certain characters from a string python

for char in line:
    if char in " ?.!/;:":
        line.replace(char,'')
Posted by: Guest on April-08-2020
0

remove character at index

// removing char at index 3
var str = "Hello World";
str = str.slice(0, 3) + str.slice(4);

console.log(str)  // Helo World
Posted by: Guest on August-17-2020

Code answers related to "howt get rid of a charcheter in a sting"

Python Answers by Framework

Browse Popular Code Answers by Language