Please how to find longer value with "regular expression" in the TextPad application?
Thanks a lot Libi
So in the data file I need to find all values which are longer then 8 chars
This regex might be what you want:
[a-zA-Z0-9]{9,}
Test it here.
Depending on the source file, the regex may need some adjustment.
Copyright © 2021 Jogjafile Inc.
This regex might be what you want:
Test it here.
Depending on the source file, the regex may need some adjustment.