이 문서의 예에서는 Python 파일에서 공백, 탭 및 캐리지 리턴을 제거하는 방법을 설명합니다.
서버의 json 파일은 모두 수동으로 작성되었습니다. 작성 후에는 형식이 매우 규칙적이고 읽기 쉽다는 것을 알았습니다. 그러나 클라이언트 요청에는 공백, 탭 등이 필요하지 않습니다. 형식을 위해 json에 추가했습니다. 캐리지 리턴과 같은 쓸모없는 문자가 있으므로 파일에서 공백, 캐리지 리턴 및 줄 바꿈을 제거하는 스크립트를 Python으로 작성했습니다.
원본 json 파일:
{ "amount" : "2", "content" : [ { "category_id" : 0, "name" : "古典文学", "category_json_url" : "http://172.16.242.14:8080/source/history/history.json" }, { "category_id" : 1, "name" : "流行音乐", "category_json_url" : "http://172.16.242.14:8080/source//popmusic/popmusic.json" } ] }
스크립트로 처리된 파일:
{"amount":"2","content":[{"category_id":0,"name":"Classical Literature" ," Category_json_url":"http://172.16.242.14:8080/source/history/history.json"},{"category_id":1,"name":"인기 음악","category_json_url":"http:/ /172.16 .242.14:8080/source//popmusic/popmusic.json"}]}
아래 코드 :
def stripFile(oldFName,newFName): '''''remove the space or Tab or enter in a file,and output to a new file in the same folder''' fp = open(oldFName,"r+") newFp = open(newFName,"w") for eachline in fp.readlines(): newStr = eachline.replace(" ","").replace("\t","").strip() #print "Write:",newStr newFp.write(newStr) fp.close() newFp.close() if __name__ == "__main__": oldName = raw_input("input file name:") nameList = oldName.split(".") newName = "%s%s%s" % (nameList[0],"_new.",nameList[1]) stripFile(oldName,newName) print "finish output to new file:",newName
스크립트 사용시 스크립트 파일과 처리할 파일이 같은 디렉토리에 있다면, file name , 그렇지 않은 경우 파일의 전체 경로를 입력해야 합니다.
위 내용은 공백(탭 포함) 잘라내는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!