I'm trying to find characters when preceded with exact string but not the preceding string. how to do that?
I have the string
+1545464454<+440545545454<+210544455454<+75455454545
the above string are phone numbers with international prefix, but some of them have 0 between prefix and number and I need to take it out.
I have /(\+4|\+44|\+7 ... allprefixes here...)0/g
but this selects the prefix as well and I need to select only 0
I's in the javascript