Csv 파일 탭 파일 바꾸기
8894 단어 tabcsvCsv 파일 탭 파일 바꾸기
- function split(str,splitor)
- if(splitor==nil) then
- splitor=","
- end
- local strArray={}
- local strStart=1
- local splitorLen = string.len(splitor)
- local index=string.find(str,splitor,strStart,true)
- if(index==nil) then
- strArray[1]=str
- return strArray
- end
- local i=1
- while index do
- strArray[i]=string.sub(str,strStart,index-1)
- i=i+1
- strStart=index+splitorLen
- index = string.find(str,splitor,strStart,true)
- end
- strArray[i]=string.sub(str,strStart,string.len(str))
- return strArray
- end
-
- --
- function sf_trim(s)
- local _, quotedPart = string.match(s, "([\"'])(.-)%1")
- return quotedPart
- end
-
- function ArrToTabStr(tbStrArr, tbCol)
- local szOutPut = ""
- local nFirstLine = 1
- for _, nCol in pairs(tbCol) do
- if tbStrArr[nCol] ~= nil then
- if nFirstLine == 1 then
- szOutPut = szOutPut..sf_trim(tbStrArr[nCol])
- nFirstLine = 0
- else
- szOutPut = szOutPut..'\t'..sf_trim(tbStrArr[nCol])
- end
- end
- end
- szOutPut = szOutPut..'
'
- return szOutPut
- end
-
- --[[
- , , , , 。
- ]]
- function fCsvToTabFile(szFilePath, tbSelCol)
- -- csv
- local tbRet = {}
- local hCsvFile = io.open(szFilePath)
- if not hCsvFile then
- print(" :", szFilePath)
- return
- end
-
- -- tab
- local hTabFile = io.open("test.txt", "w")
- if not hTabFile then
- print(" ")
- return
- end
-
- local nLineNum = 0
- while 1 do
- line = hCsvFile:read("*l")
- if not line then
- break
- end;
- local strOutPut = ArrToTabStr(split(line), tbSelCol)
- if strOutPut ~= "" then
- hTabFile:write(strOutPut)
- end
- nLineNum = nLineNum + 1
- end
- hCsvFile:close()
- hTabFile:close()
- end
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
vuetab 전환, echartst 도표 폭이 100px에 불과한 문제 해결해결 사고방식: 도표의 넓이를 직접적으로 죽이고 실제 코드에 따라 개작하여 하나의 사고방식을 제공한다. 보충 지식: vue 프로젝트tab 전환 echart 도표 전환 폭 축소 및 도표 내용 부정확한 해결 폭 축소 문...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.