Sorry, I have no clue.
What do you use to apply your regex? Programming language, library, command line tool etc.
there’s a random number at the end of some of the lines, I’m trying to match that.
Is it decimal? One digit or multiple digits? Natural, rational?
BTW if you don’t need to capture the number,
\d$
should match what you need. If regex syntax supports\d
, of course.