Checking Number of texts with lowerclass letters

Hello

Im creating a scripting to check the number of texts with lower-class letters, im thinking category (Text Notes) then All elements of category, I need to filter based on something (reason im posting) then count and output the count.

could someone help please with the “something”?

@NERDASORUS ,

hmmm… like this

via python…

OUT = [i.islower() for i in IN[0]]

KR
Andreas

1 Like

thank you so much for your quick response, i need to check if the whole text has any lowercase.

Hi something here…

1 Like

Likely quicker to build the range of lowercase characters than converting cases.

4 Likes