Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

"Found a WORD"

Hello ervery body.

I need a function that tells me whether a string is just a word ad does not contanin any numbers-

Exaplable

"Cat" --Is è word ?TRUE

"9875m" IS è word?FALSE.

"DOG"-->T

2 Replies
gussfish
Creator II
Creator II

You can use the findoneof(text,characterset) function to check whether your text has a digit in it or not. i.e.

IF findoneof(text,'0123456789') returns 0, then text has no digits in it.

Not applicable
Author

Hi,

Please find the attached sample may help you.

Cheers.