remove letter from string javascript code example

Example 1: delete first character javascript

let str = 'Hello';
 
str = str.slice(1);
console.log(str);
 
/*
    Output: ello
*/

Example 2: remove first char javascript

let str = 'Hello';
 
str = str.substring(1);
console.log(str);
 
/*
    Output: ello
*/

Example 3: javascript remove character from string

mystring.replace(/r/g, '')

Example 4: 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("");

Example 5: remove letter js

remove letter

Tags:

Php Example