“Substring JS entre dois caracteres” Respostas de código

JavaScript Get String entre dois caracteres

const oldString = 'John1Doe2'

const stringBetweenCharacters = oldString.match(/1(.*?)2/i)[1] //Doe
Tom Bomb

Substring JS entre dois caracteres


let str = "My string is:abc;";

var mySubString = str.substring(
    str.indexOf(":") + 1, 
    str.lastIndexOf(";")
);

// mySubString = "abc"
Trevorpergliamici

Respostas semelhantes a “Substring JS entre dois caracteres”

Perguntas semelhantes a “Substring JS entre dois caracteres”

Procure respostas de código populares por idioma

Procurar outros idiomas de código