I'm trying to match anything that's NOT:
- either just digits (ex.
0024753766
) - or just digits preceded by a '+' (ex.
+347868646
)
In other words, any non-digit character that's not an initial +
.
I've done some research and a lot of trial and error and I'm going crazy cause it sounds so simple and yet I can't figure it out.
Closest help I found was Regex ignoring first character if it's a $ but I'm too new to regex to be able to fine tune it to my specific needs.
That's the last bit of code I need to complete my project and I'm stuck as hell.