I would like to know how to get only the numbers and the _ from "{\"id\":\"21432413214_124533451397\"}" using regular expressions in c#. Here for example, I want the “21432413214_124533451397”-part. Thanks!
I would like to know how to get only the numbers and the _
Share
[0-9]+_[0-9]+matches two numbers with an underscore between them.