User:Free Portal/Sandbox/ko

From Second Life Wiki
Jump to navigation Jump to search

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>