Issue
How would I use Python's split() on a text file using ASCII decimal 29 Group Separator for separator?
I have text files that Notepad++ displays GS icons between chunks of text which I believe are Group Separators.
Solution
zwer has provided a solution in a comment:
You can easily define your ASCII char from your code: .split(chr(29))
Answered By - ptay
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.