Skip to content

Instantly share code, notes, and snippets.

@Arthraim
Created September 25, 2010 15:51
Show Gist options
  • Save Arthraim/596977 to your computer and use it in GitHub Desktop.
Save Arthraim/596977 to your computer and use it in GitHub Desktop.
transfer TianYu csv file to a nokia csv file
# 天宇csv -> nokia csv
# Arthur Wang
# REGEX: "(\w+|[^@#:\s,,,.。;;:;]+)" *
import re
p = re.compile('"(\\w+|[^@#:\\s,,,.。;;:;]+)" *')
p.sub(r"\1,", '"abc" "12312312"', 0);
# OUTPUT: 'abc,12312312,'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment