how to slice a string in javascript code example
Example 1: js string slicing
const str = 'The quick brown fox jumps over the lazy dog.';
console.log(str.slice(31));
console.log(str.slice(4, 19));
Example 2: javascript slice string from character
var input = 'john smith~123 Street~Apt 4~New York~NY~12345';
var fields = input.split('~');
var name = fields[0];
var street = fields[1];
Example 3: string splice
newStr = str.split('');
newStr.splice(2,5);
newStr = newStr.join('');
Example 4: slice string js
const str = 'The quick brown fox jumps over the lazy dog.';
console.log(str.slice(31));
console.log(str.slice(4, 19));
console.log(str.slice(-4));
console.log(str.slice(-9, -5));
Example 5: slice string javascript if has @
let email = '[email protected]'
let localPart = email.slice(0,email.indexOf('@'));
Example 6: js slice string at word
var str= "12344A56789";
var splitted = str.split('4A');
var first = splitted[0];
var second = splitted[1];
console.log('First is: ' + first + ', and second is: ' + second);