Hello,
Don't know if it is possible using regular expressions, but if I have a string like:
'54 - testOne,18 - testXY,19 - testXZ'
How can I extract only the ID's marked? as then I want to use them in a SQL statement like.. table.column in (54,18,19)
ID's are only present before the “ - ”
Thanks!