Hi,
Good day !
Is there any regex formula to remove second '0' on mobile number ?
Below is the example, I want to remove first '0' after '+30 '
| Mobile Number | Output |
| +30 0123304011 | +30 123304011 |
| +30 146321938 | +30 146321938 |
| +30 0440324037 | +30 440324037 |
| +30 019663515 | +30 19663515 |
| +30 172881533 | +30 172881533 |
| +30 178853653 | +30 178853653 |
| +30 12343420 | +30 12343420 |
| +30 1325750900 | +30 1325750900 |
The desired output is to show '+30' following with 1 space and other numbers ( must start with non-zero ).
Second question, what if there is also some numbers has few 'spaces' after '+30'
For example :
+30 01234069 (contain 2 spaces )
+30 011298799 ( contain 3 spaces )
Thanks !