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

Code answers related to "js match between two characters"

Code answers related to "Javascript"

Browse Popular Code Answers by Language