Answers for "js substring 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
0

js substring between two characters

var mySubString = str.substring(
    str.indexOf(":") + 1, 
    str.lastIndexOf(";")
);
Posted by: Guest on December-28-2021

Code answers related to "js substring between two characters"

Code answers related to "Javascript"

Browse Popular Code Answers by Language