Hello everyone,
I'm trying to split a string to rows based on two conditions:
1- Each row value should start with 6
2- And have a length of 10 chars.
Example:
Before:
| 612345689760012255876000011111 |
After:
| 6123456897 |
| 6001225587 |
| 6000011111 |
Is there any way to do that? or even a way to insert a space or delimiters after every 10 digits that starts with 6?
Thank you all!