Simle regex question, c# -
i know how numbers , _ "{\"id\":\"21432413214_124533451397\"}"
using regular expressions in c#. here example, want "21432413214_124533451397"-part. thanks!
[0-9]+_[0-9]+
matches 2 numbers underscore between them.
i know how numbers , _ "{\"id\":\"21432413214_124533451397\"}"
using regular expressions in c#. here example, want "21432413214_124533451397"-part. thanks!
[0-9]+_[0-9]+
matches 2 numbers underscore between them.
Comments
Post a Comment