I need some help find a regular expression matching of a text sting for every char expect the first 10. For example, I used the regex:
.{10} to match the first 10 chars of the text
P53236TT0834691
P53236TT08 34691 --> matching
But I need the negative result as matching (from char 11 to x ) Can someone help me with the right expression?