Answers for "how to split by multiple characters in typescript"

0

javascript split string by multiple characters

let string = "Hello awesome, world!"
string.split(/[s,]+/)
// Hello,awesome,world!
Posted by: Guest on June-06-2021

Code answers related to "how to split by multiple characters in typescript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language