Strlower
From kwiki
| | This article is written by Konrad, thus using rather nonstandard English:) |
strlower (DNM Script function)
Contents |
[edit]
full declaration
String strlower (string str)
[edit]
return value
[edit]
description
Convert string to lowercase (returns the result)
[edit]
example
var $s="Hello World"; $s=strupper($s); MessageBox($s);//"HELLO WORLD" $s=strlower($s); MessageBox($s);//"hello world"
keywords: strlower string lower low lowercase to make
