Skip to main content

Hi, help me! Can I extract only alphabet value from string and exclude those number value in string.

Example string: My name is Liyana 6547

I just want to display only “My name is Liyana”. The string value is random and not fix.

Hey @liyananadia ,

you can use String→ Replace and pass RegEx as \d+, and replace with keep as blank. You will get the output


Hi @Zaid Chougle. Thank you so much for your answers. It’s work now! 

 


Reply