Answers for "delete character from string javascript"

9

how to remove lasr char from string in javascript

str=str.slice(0, -1);
Posted by: Guest on June-21-2020
7

javascript remove character from string

mystring.replace(/r/g, '')
Posted by: Guest on October-08-2020
0

delate char betwen index js

// First find the substring of the string to replace, then replace the first occurrence of that string with the empty string.

S = S.replace(S.substring(bindex, eindex), "");

//Another way is to convert the string to an array, splice out the unwanted part and convert to string again.

var result = S.split("");
result.splice(bindex, eindex - bindex);
S = result.join("");
Posted by: Guest on June-19-2020

Code answers related to "delete character from string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language