I need a Regular Expression that matches everything after the first two characters in a string.
For Example (original string listed first, then what I’d like to match):
AZ0bc1234 > 0bc1234
50def123 > def123
!@hijk1234 > hijk1234
All that matters is position, any characters (alpha-numeric with symbols) could be included in the original string.
I’ve tried many things, but everything I attempt matches at least one of the first two characters. The closest I’ve come is using \B.* to match everything but the first character.
If you want everything but the first two characters, you could try this (to capture up to the end of each line):
You are after the first group (in parens). Or differently: