How would I write the regex expression to match the following?
13_12,13_12 Normally I would do: [0-9]_[0-9]\\, To go after the pattern 13_12,, but that only works when the numbers are from 0-9. Since they are 12 and 13, what do I need to do differently? Basically I want to match on 13_12, only. TR
