And thanks for your help!
I am trying to do an negative inclusion
I have the following:
0[1-9][0-9]{5}
this works for positive inclusion against this:
0258714 0465666 1213655 568464668 225 75487 021523
56556 0236589
but when I try this
(?!0[1-9][0-9]{5})
it doesn't include the opposite
0258714 0465666 1213655 568464668 225 75487 021523
56556 0236589
How could we get this to work?
see link for setup: https://regex101.com/r/OkMliM/1
\b(?!0[1-9][0-9]{5})\d+regex101.com/r/8HhsS8/1