Remove words with 2 letters

Goodmorning, How can I remove words with 2 letters from a text?

You could use the ReplaceAll block in this extension:

I didn’t test it, but the pattern “[a-zA-Z]{2}” should work for you.

1 Like

Here’s a vanilla solution that should work.

2letterfilter

4 Likes

Thank you for your answers

1 Like