Difference between revisions of "Talk:LlReplaceSubString"

From Second Life Wiki
Jump to navigation Jump to search
(Created page with "= About time! = It's not rolled out fully yet. You can start using it in your code already now though, using Firestom's conditional compiles: <syntaxhighlight lang="lsl"> #de...")
 
(No difference)

Latest revision as of 09:32, 1 February 2023

About time!

It's not rolled out fully yet. You can start using it in your code already now though, using Firestom's conditional compiles:

#define no577942

#ifdef no577942
string llReplaceSubString(string str, string search, string replace, integer count) {
    return llDumpList2String(llParseStringKeepNulls((str = "") + str, [search], []), replace);
}
#endif

Once it's rolled out in your region, simply remove the #define statement.

Peter Stindberg (talk) 08:31, 01 February 2023 (PDT)