I have a database which contains ID such as
ID
000000000000000000000PBC_1164321
00000000000000000000000RP_395954
00000000000000000000000MOP_395954
00000000000000000000000395954
I want to get only the data after the leading 0's something like this:
ID
PBC_1164321
RP_395954
MOP_395954
395954
I am testing it on https://regexr.com. I tried using ^(0*)
but it selects all the 0's. I want the opposite of it, not select all the leading 0 but everything after it. Kindly help.
I am not using any language such as Python and R. Just want to use regex to select/match anything apart from leading 0's