Difference between revisions of "StringTruncate"
Jump to navigation
Jump to search
Ugleh Ulrik (talk | contribs) |
m (<lsl> tag to <source>) |
||
(7 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
Not to be confused with [[ | Not to be confused with [[llStringTrim]]. | ||
this function will trim a string if it is too long. | this function will trim a string if it is too long. | ||
'''Function''' | |||
<source lang="lsl2"> | |||
string StringTruncate(string text, integer length) | |||
{ | |||
if (length < llStringLength(text)) | |||
return llGetSubString(text, 0, length - 2) + "…"; | |||
// else | |||
return text; | |||
} | } | ||
</source> | |||
</ | |||
'''Example''' | '''Example''' | ||
< | <source lang="lsl2"> | ||
string | string StringTruncate(string text, integer length) | ||
if (length < llStringLength(text)) | { | ||
if (length < llStringLength(text)) | |||
return llGetSubString(text, 0, length - 2) + "…"; | |||
// else | |||
return text; | |||
} | } | ||
default | default | ||
{ | { | ||
state_entry() | state_entry() | ||
{ | { | ||
// llSay( | // llSay(PUBLIC_CHANNEL, "Hello, Avatar!"); | ||
} | } | ||
touch_start(integer | touch_start(integer num_detected) | ||
{ | { | ||
llSay( | llSay(PUBLIC_CHANNEL, StringTruncate("my name Ulrik Ulrik", 11)); | ||
} | } | ||
} | } | ||
</ | </source> | ||
{{LSLC|User-Defined Functions}} | {{LSLC|User-Defined Functions}} |
Latest revision as of 14:38, 22 January 2015
Not to be confused with llStringTrim.
this function will trim a string if it is too long.
Function
string StringTruncate(string text, integer length)
{
if (length < llStringLength(text))
return llGetSubString(text, 0, length - 2) + "…";
// else
return text;
}
Example
string StringTruncate(string text, integer length)
{
if (length < llStringLength(text))
return llGetSubString(text, 0, length - 2) + "…";
// else
return text;
}
default
{
state_entry()
{
// llSay(PUBLIC_CHANNEL, "Hello, Avatar!");
}
touch_start(integer num_detected)
{
llSay(PUBLIC_CHANNEL, StringTruncate("my name Ulrik Ulrik", 11));
}
}