Difference between revisions of "Category:LSL Username"

From Second Life Wiki
Jump to navigation Jump to search
(the trailing space gets consumed as part of the resident last name or seperately, the null strings get discarded so it all collapses. Stream lines things.)
m (LSL format)
 
Line 13: Line 13:
|}
|}


<lsl>string LegacyToUsername(string legacy)
<source lang="lsl2">string LegacyToUsername(string legacy)
{
{
     return llDumpList2String(llParseString2List(llToLower(legacy)+" ", [" resident ", " "],[]), ".");
     return llDumpList2String(llParseString2List(llToLower(legacy)+" ", [" resident ", " "],[]), ".");
}</lsl>
}</source>


See {{LSLGC|Avatar/Name}} for more details.
See {{LSLGC|Avatar/Name}} for more details.

Latest revision as of 13:12, 5 July 2015

A user's username depends upon what type of account it is:

Type Format
Legacy "firstname.lastname"
Modern "firstname"
string LegacyToUsername(string legacy)
{
    return llDumpList2String(llParseString2List(llToLower(legacy)+" ", [" resident ", " "],[]), ".");
}

See Avatar/Name for more details.

Subcategories

This category has only the following subcategory.

Pages in category "LSL Username"

The following 3 pages are in this category, out of 3 total.