Answers for "how to extract a pattern from a string in typescript"

0

js array find regex

const array = ["page=4", "sortOrder=asc", "datePosted=all-time", "sortOrder=desc"];
const match = array.find(value => /^sortOrder=/.test(value));
// match = "sortOrder=asc"
Posted by: Guest on September-29-2020
0

regex to get part of word nodejs

/({#(.*?)#}))/g.exec("({#test#})")[1] === "test"
Posted by: Guest on April-06-2020

Code answers related to "how to extract a pattern from a string in typescript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language