testing on case

Dar Scott dsc at swcp.com
Wed Dec 8 15:46:24 EST 2004


On Dec 8, 2004, at 1:28 PM, Dar Scott wrote:

> Untested:
>
> function isCapitalized @x, n, m
>     constant capitalLetters = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
>     return char 1 word n of line m of x is in capitalLetters
> end isCapitalized

Whoops!

on mouseUp
   put "one two three" & lf & "Alpha beta" into x
   put isCapitalized(x,2,1) && isCapitalized(x,1,2)
end mouseUp

function isCapitalized @x, n, m
   constant capitalLetters = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
   set the caseSensitive to true
   return char 1 word n of line m of x is in capitalLetters
end isCapitalized

Now tested.

Dar
****************************************
     Dar Scott Consulting
     http://www.swcp.com/dsc/
     Programming Services
****************************************



More information about the use-livecode mailing list