Difference between revisions of "User:Free Portal/Sandbox/ko"

From Second Life Wiki
Jump to navigation Jump to search
(Created page with '{{multi-lang}} {{User:Free_Portal/Template:Wiki_Header/ko}} =SandBox = <div id="box"> <div style="padding: 0.5em 0.5em 1.5em"> 사용도 높은 사용자 정의 함수 모음들 ...')
(No difference)

Revision as of 12:37, 8 March 2010

SandBox

사용도 높은 사용자 정의 함수 모음들 및 간단한 유틸 모음집

string searchReplace( string input, string old, string new )

문자열에서 단어를 치환 하여 반환합니다. <lsl>string searchReplace(string input, string old, string new) {

  return llDumpList2String(llParseString2List(input, [old], []), new);

}</lsl>