Hello. I have a new blog.

I've moved this blog to the following URL Kerkness.ca. Thank you for visiting, please update your bookmarks.

Monday, February 18, 2008

PHP strtoupper() and strtolower() in Flex

Having been a PHP programmer for many years and only now in the last month started to learn Flex and ActionScript I find I'm always looking for ways to get something done in ActionScript which I know how to do in PHP. These are pretty straight forward and simple functions but sometimes it's nice to have a reference.

PHP strtoupper( $string ) and strtolower( $string ) in Flex

public function strtoupper( str:String ):void
{
return str.toUpperCase();
}
public function strtolower( str:String ):void
{
return str.toLowerCase();
}

No comments:

Post a Comment

Thank you for the comments.