Difference between revisions of "User:Peter Stindberg/strCapitalize"

From Second Life Wiki
Jump to navigation Jump to search
m
(Changed to LSL function template.)
Line 1: Line 1:
{{LSL Header}}{{LSLC|User-Defined_Functions}}
{{LSLC|User-Defined_Functions}}
=== Capitalize first letter of each word ===
{{LSL_Function
 
|func=strCapitalize
This function will take a string as input and return the string with the first letter of each word capitalized and all the other letters in lowercase. Works great for natural language, will fail with acronyms. For this, the "llToLower" could be removed.
|func_desc=This function will take a string as input and return the string with the first letter of each word capitalized and all the other letters in lowercase. <syntaxhighlight lang="lsl">string strCapitalize(string str)
 
<syntaxhighlight lang="lsl">string strCapitalize(string str)
{
{
     list phrase = llParseStringKeepNulls(str, [" "], []);
     list phrase = llParseStringKeepNulls(str, [" "], []);
Line 13: Line 11:
     return llDumpList2String(phrase, " ");
     return llDumpList2String(phrase, " ");
}</syntaxhighlight>
}</syntaxhighlight>
|func_footnote
|return_type=string
|return_text=with each word capitalized.
|p1_type=string
|p1_name=str
|p1_desc=Word or phrase that will be capitalized.
|p1_hover
|constants
|spec
|caveats=Will fail with acronyms since all letters but the first will be turned to lowercase.
|examples
|helpers
|also_header
|also_functions
|also_tests
|also_events
|also_articles
|also_footer
|notes
|mode
|deprecated
|location
|cat1
|cat2
|cat3
|cat4
|cat5
|cat6
}}

Revision as of 21:59, 8 July 2022

Summary

Function: string strCapitalize( string str );

This function will take a string as input and return the string with the first letter of each word capitalized and all the other letters in lowercase.
string strCapitalize(string str)
{
    list phrase = llParseStringKeepNulls(str, [" "], []);
    integer i;
    for (i = 0; i < llGetListLength(phrase) ; i++) {
        phrase = llListReplaceList(phrase, [llToUpper(llGetSubString(llList2String(phrase,i),0,0)) + llToLower(llGetSubString(llList2String(phrase,i),1,-1))], i, i);
    }
    return llDumpList2String(phrase, " ");
}

Returns a string with each word capitalized.
• string str Word or phrase that will be capitalized.

Caveats

Will fail with acronyms since all letters but the first will be turned to lowercase.

All Issues ~ Search JIRA for related Bugs

Examples

Deep Notes

Search JIRA for related Issues

Signature

function string strCapitalize( string str );