Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Does that work for you?
EDIT: I just realised that string_lettersdigits() might remove spaces. In which case you may need to make your own script to remove punctuation OR just use string_replace_all() to convert the spaces into something alphanumerical first, then use the string_lettersdigits() function and then string_replace_all() to get the spaces back (if you want to, you could still do the final check if you substitute the replacement for the spaces).
Type string_ into the index of the help file to see the string functions. Also contents->Reference->Strings
On windows you can use DLL extensions - you could use that to interface to a regex library of some kind (e.g. the one in boost) which would make this easy.