Lua에는 기본적으로 split 함수가 없는지..
실행 시 아래와 같은 오류 메시지가 발생한다.
attempt to call global 'split' (a nil value)
해결법은 아래 함수를 추가후 string.split 함수를 사용하면 된다.
function string:split(delimiter)
local result = { }
local from = 1
local delim_from, delim_to = string.find( self, delimiter, from )
while delim_from do
table.insert( result, string.sub( self, from , delim_from-1 ) )
from = delim_to + 1
delim_from, delim_to = string.find( self, delimiter, from )
end
table.insert( result, string.sub( self, from ) )
return result
end
'Etc' 카테고리의 다른 글
git 에서 신규 브랜치 생성 후 checkout 이 안 될 때 (0) | 2020.03.12 |
---|---|
[Tistory] 티스토리 소스코드 플러그인 사용 (업로드 없이 간편) (6) | 2018.06.05 |
Windows 7 설치 부팅 USB 제작 프로그램 (0) | 2015.06.16 |
Sencha Touch App Generate 센차터치 앱 생성 (0) | 2015.05.03 |
Sencha Touch 센차터치 app 내부 파일 구조 (0) | 2015.05.03 |