mantis 9056: add llReplaceSubString()

This commit is contained in:
UbitUmarov
2023-01-31 17:16:33 +00:00
parent 9e60afbb68
commit 6a2d9e8ec3
3 changed files with 41 additions and 0 deletions

View File

@@ -2209,5 +2209,10 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
{
return m_LSL_Functions.llHash(s);
}
public LSL_String llReplaceSubString(LSL_String src, LSL_String pattern, LSL_String replacement, int count)
{
return m_LSL_Functions.llReplaceSubString(src, pattern, replacement, count);
}
}
}