Extracting numbers from a string using regular expressions

后端 未结 4 2196
北恋
北恋 2021-01-25 10:22

I am clueless about regular expressions, but I know that they\'re the right tool for what I\'m trying to do here: I\'m trying to extract a numerical value from a string like thi

4条回答
  •  不要未来只要你来
    2021-01-25 10:58

    mystr.match(/assignment_group=([^\^]+)/)[1]; //=> "12345678901234567890123456789012"
    

    This will find everything from the end of "assignment_group=" up to the next caret ^ symbol.

提交回复
热议问题