“JavaScript -Substring” Code-Antworten

JavaScript erhalten die ersten 10 Zeichen der String

var str = "Hello world That is reallly neat!";
var res = str.substring(0, 5);//get first 5 chars
Grepper

JS Substring

// the substring method returns a string out of another string

const str = 'Mozilla';

console.log(str.substring(1, 3));
// expected output: "oz"

console.log(str.substring(2));
// expected output: "zilla"
mikelikestocode

Substring JavaScript

var str = "Hello world!";
var res = str.substring(1, 4); //ell
Sleepy Swiftlet

Substring

const str = 'Mozilla';

console.log(str.substring(1, 3));
// expected output: "oz"

console.log(str.substring(2));
// expected output: "zilla"
Prickly Pony

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
Cipriano98

JavaScript -Substring

// zero-based index, 'end' is excluded from result
myString.substring( start, end ) 
Stupid Scarab

Ähnliche Antworten wie “JavaScript -Substring”

Fragen ähnlich wie “JavaScript -Substring”

Weitere verwandte Antworten zu “JavaScript -Substring” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen