string
From NWN Lexicon
A sequence of characters of arbitrary length. The default value is an empty string (""). Strings can be concatenated (that is, combined) by using the plus ("+") sign. A string can be compared for equality against another string by using the double equals ("==") equality tester, or for inequality by using the "!=" equality tester. When testing for string equality, strings are case-sensitive (that is, "SoME CHaRaCTeR NaMe" does not equal "some character name").
[edit] Example
string sHero = "Galryx";