Answers for "js get string between two characters"

3

javascript get string between two characters

const oldString = 'John1Doe2'

const stringBetweenCharacters = oldString.match(/1(.*?)2/i)[1] //Doe
Posted by: Guest on April-07-2021
3

javascript get text between two words

//Gets the part of the string inbetween the : and the ;
var part = str.substring(
    str.lastIndexOf(":") + 1, 
    str.lastIndexOf(";")
);
Posted by: Guest on June-04-2020
1

how to count specific letters in string js

console.log(("str1,str2,str3,str4".match(/,/g) || []).length); //logs 3

console.log(("str1,str2,str3,str4".match(new RegExp("str", "g")) || []).length); //logs 4
Posted by: Guest on September-08-2020

Code answers related to "js get string between two characters"

Code answers related to "Javascript"

Browse Popular Code Answers by Language