How can I split a line in Python at a non-printing ascii character (such as the long minus sign hex 0x97 , Octal 227)? I won't need the character itself. The information after it will be saved as a variable.
|
feedback
|
|
You can use
Adjust the pattern to only include the characters you want to keep. See also: stripping-non-printable-characters-from-a-string-in-python Example (w/ the long minus):
Or, the same with unicode:
| |||||||||||||
feedback
|
or
If | |||
|
feedback
|
|
Just use the string/unicode split method (They don't really care about the string you split upon (other than it is a constant. If you want to use a Regex then use re.split) To get the split string either escape it like the other people have shown "\x97" or use chr(0x97) for strings (0-255) or unichr(0x97) for unicode so an example would be
| |||||||||||
feedback
|