I have a string like this : "+33 (0)1 75 32 33 34", i want this result : +331 75 32 33 34 And I fail to find the pattern to use to have this result
Have you any idea ?
Find \s*\([^)]+\)
Replace by empty string.
\s*\(0\)|\s*\([^0)]+\)\s*\(0\)|\s*\(([1-9])\) try this @JeromeCampeaux replace by $1.