vargas Posted January 31, 2006 Posted January 31, 2006 How do I find uppercase letters in a field? any uppercase character.
Vaughan Posted January 31, 2006 Posted January 31, 2006 FMP searches are case insensitive by default. However in FMP 6 and earlier setting the field's sort language to ASCII will make it case sensitive. Though I haven't tried it with 7/8, try setting the language to Unicode.
vargas Posted January 31, 2006 Author Posted January 31, 2006 I want to search for any Upper case character after the first letter. want to find out how many characters are Upper case. thanks
LaRetta Posted February 1, 2006 Posted February 1, 2006 You might try this ... create a calculation (result is number): Length ( Filter ( Middle ( text ; 2 ; Length ( text ) ) ; "ABCDEFGHIJKLMNOPQRSTUVWXYZ" ) ) This should produce the number of upper case characters IGNORING the first character (in field called text). Search the calculation field for > 0.
Recommended Posts
This topic is 6870 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now