js string slice code example
Example 1: substr() javascript
const str = 'substr';
console.log(str.substr(1, 2));
console.log(str.substr(1));
console.log(str.substr(-3, 2));
console.log(str.substr(-3));
Example 2: 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 3: 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 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: js slice
const arr=[1,2,3,4,5];
const slicedArr = arr.slice(1,4);
Example 6: slice string javascript if has @
let email = '[email protected]'
let localPart = email.slice(0,email.indexOf('@'));