Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

substr() javascript

const str = 'substr';

console.log(str.substr(1, 2)); // (1, 2): ub
console.log(str.substr(1)); // (1): ubstr

/* Percorrendo de trás para frente */
console.log(str.substr(-3, 2)); // (-3, 2): st
console.log(str.substr(-3)); // (-3): str
Comment

js substr

//str.substr(start[, length])
var str = 'abcdefghij';

console.log('(1, 2): '   + str.substr(1, 2));   // '(1, 2): bc'
console.log('(-3, 2): '  + str.substr(-3, 2));  // '(-3, 2): hi'
console.log('(-3): '     + str.substr(-3));     // '(-3): hij'
console.log('(1): '      + str.substr(1));      // '(1): bcdefghij'
console.log('(-20, 2): ' + str.substr(-20, 2)); // '(-20, 2): ab'
console.log('(20, 2): '  + str.substr(20, 2));  // '(20, 2): '
Comment

Substring in Javascript

const str = "Learning to code";

// 3 ways to get substring in javascript
// 1. substring() method
// 2. slice() method
// 3. substr() method

console.log(str.substring(0, 5));
console.log(str.substring(0, 5));
console.log(str.substr(2, 5));
Comment

Substring in Javascript using substr

const str = "Learning to code";
// start index is 1, length is 4
console.log(str.substr(1, 10));
// start index is 3, length is 2
console.log(str.substr(3, 2));

// length not given
// string extract to end of the string
console.log(str.substr(5));
Comment

substr JavaScript

//substr() is similar to slice().
//The difference is that the second parameter specifies the length of the extracted part

let str = "Apple, Banana, Kiwi";
let part = str.substr(7, 6);

// >> Banana

//if you find this answer is useful ,
//upvote ⇑⇑ , so can the others benefit also . @mohammad alshraideh ( ͡~ ͜ʖ ͡°)
Comment

JavaScript substr()

var string = "WelcomeToSofthunt.netTutorialWebsite";
one = string.substr(0, 7)
two = string.substr(7, 2)
three = string.substr(9,12)
four = string.substr(21, 8)
five = string.substr(29,36)
six = string.substr(0)
 
document.write(one);
document.write(two);
document.write(three);
document.write(four);
document.write(five);
document.write(six);
Comment

substring in javascript

let str = "abcdefghi"
// index-> 012456789

// str.slice(±start, ±end)
console.log(str.slice(2, 5)) // cde
console.log(str.slice(-5, -3)) // ef

// str.subString(+start, +end) // can't take -ve index
console.log(str.substring(2, 5)) // cde
console.log(str.substring(5, 2)) // cde

// str.substr(±start, length)
console.log(str.substr(2, 5)) // cdefg
Comment

JavaScript substr() Syntax

string.substr(startIndex[, length])
Comment

PREVIOUS NEXT
Code Example
Javascript :: async and await 
Javascript :: using datatable 
Javascript :: setstate in react 
Javascript :: ng2 validations angular using reactiveforms 
Javascript :: setCenter: not a LatLng or LatLngLiteral with finite coordinates: in property lat: not a number 
Javascript :: permutation and combination program in javascript 
Javascript :: window.location.search javascript 
Javascript :: element.js 
Javascript :: npm paypal express checkout 
Javascript :: get file css code with javascript 
Javascript :: jest cannot find module 
Javascript :: array in javascript 
Javascript :: swift encode json 
Javascript :: javascript find factorial 
Javascript :: callback without duplicates javascript 
Javascript :: iterating string js 
Javascript :: scroll up own 
Javascript :: sort in array in javascript 
Javascript :: js get selected value by id 
Javascript :: best way to clone an object in javascript 
Javascript :: variable in js 
Javascript :: find object and remove in array 
Javascript :: error first line of nextjs file 
Javascript :: react multiple classnames 
Javascript :: useLocation for query params 
Javascript :: jquery to copy two input fields into one with a space between 
Javascript :: view child with directive not working undefined 
Javascript :: how can i do metaname csrf token attrcontent in vanilla javascrip 
Javascript :: round down js 
Javascript :: what does useref do react 
ADD CONTENT
Topic
Content
Source link
Name
9+3 =