Any platform to learn more about Regex Expression
1 Like
@aanandsanraj I have string-like Example1 - 758-985-6958
Example 2- 758_987_9741
how I can use regex to remove " - " and ""
Hi @Arun_Pondhe
I will Suggest you To replace instead of regex use string Replace function. to Replace following steps.
- Store your Variable in String variable say Str.
- Then Use
**Str.Replace("-"," ")**
. - Here we have replace
-
with Space. if you dont want space then Just remove That Space.
Thanks & Regards
1 Like
Thank you so much for help its solve
2 Likes