How about this code? But you'd better to detect case by ASCII code
number
not like this code.
And you'd better to read the article about ASCII code.
http://en.wikipedia.org/wiki/ASCII_code
<AppleScript>
set aChar to "A" --this returns "Upper case"
--set aChar to "a" --this returns "Lower case"
set aRes to detectCase(aChar) of me
on detectCase(aChar)
considering case
if aChar is in "abcdefghijklmnopqrstuvwxyz" then
return "Lower case"
else if aChar is in "ABCDEFGHIJKLMNOPQRSTUVWXYZ" then
return "Upper case"
else
return "other characters...."
end if
end considering
end detectCase
</AppleScript>
--
Takaaki Naganoya
Piyomaru Software
http://piyo.piyocast.com
On 06.9.24 10:31 PM, "Andreas Kiel" <email@hidden> wrote:
Hi all,
I sitting here and can't find an effective way to figure out whether
a certain character of a text string is either upper or lower.
Any ideas out there?
Thanks for reading the message at all and
kind regards.
Andreas
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Applescript-studio mailing list
(email@hidden)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/applescript-studio/maro%40b-
mark.nu
This email sent to email@hidden
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Applescript-studio mailing list
(email@hidden)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/applescript-studio/
email@hidden
This email sent to email@hidden