-1

Please how to find longer value with "regular expression" in the TextPad application?

Thanks a lot Libi

Wiktor Stribiżew
  • 607,720
  • 39
  • 448
  • 563
bulllock
  • 1
  • 1
  • This may help you, https://stackoverflow.com/questions/18858334/how-can-i-use-regular-expressions-in-textpad-to-remove-anything-line-by-line-a – Omkar May 16 '19 at 08:42
  • I have the value "hanah2015" but this value has 9 chars and it can have only 8chars. So in the data file I need to find all values which are longer then 8 chars. – bulllock May 16 '19 at 09:53
  • For example from the list find the hanah2015: list of values: ibor2351 lili0158 hanah2015 david158 – bulllock May 16 '19 at 11:10

1 Answers1

0

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.

virolino
  • 2,073
  • 5
  • 21