User:Talia Tokugawa/scripts: Difference between revisions

From Second Life Wiki
Jump to navigation Jump to search
Talia Tokugawa (talk | contribs)
New page: Going to place some example scripts in here...
 
Talia Tokugawa (talk | contribs)
No edit summary
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>