Difference between revisions of "User:Talia Tokugawa/scripts"

From Second Life Wiki
Jump to navigation Jump to search
(New page: Going to place some example scripts in here...)
 
Line 1: Line 1:
Going to place some example scripts in here...
Going to place some example scripts in here...
Code Snippets:
*character replacement.
These two are for replacing \" in a string that is a preset string
<lsl> text=llDumpList2String(llParseString2List(text, ["\\\""],[]), "\""); </lsl>
<lsl> text=llDumpList2String(llParseString2List(text, ["\\\'"],[]), "\'"); </lsl>

Revision as of 20:30, 16 June 2008

Going to place some example scripts in here...

Code Snippets:

  • character replacement.

These two are for replacing \" in a string that is a preset string <lsl> text=llDumpList2String(llParseString2List(text, ["\\\""],[]), "\""); </lsl> <lsl> text=llDumpList2String(llParseString2List(text, ["\\\'"],[]), "\'"); </lsl>