Return letters from string

Hey,
Is there a way to return only letters from a string?
For example I have a string “pen - 1$” and all I want to get is the word “pen” is it possible to do someting like that?
Earlier someone showed me how to return only number from a string and now I need only letters, no numbers, no special characters (like “-” and “$”).

Make a list of every letter A to Z (26 letters in english alphabet) and only return the characters that are in the list.

You can also just make a string of all letters A to Z like “abcdefghi…” and use IF text contains block

1 Like

Execellent Guide :

1 Like

Using regular expression by @Kevinkun

image

Thanks, I have a question. Will it work with other words not just pen?

Yes, just try it

image

Okay, thanks!

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.