Hello,
I am looking for regexp_like pattern to find exactly 8 digits in a string. Example cases:
- ‘12345678’ is true
- ‘12345678_END’ is true
- ‘START 12345678’ is true
- ‘123456789’ is false
- ‘Start 123456789 END’ is false
- ‘12345678 123456789’ is true
- ‘1234 5678’ is false
I need the exact 8 digits as one "word". Any suggestions for the pattern ?
sql_coder