String
From kwiki
String (DNM Script built-in variable type)
A string is series of characters. In DNM Script these are UNICODE characters. Only double quotes are allowed (no single quotes like in PHP) Example:
var $sSomeString="Hello World!";//this is a string now $sSomeString+=" I'm here!";//$sSomeString is now "Hello World! I'm here!"
[edit]
