fork download
  1. import re
  2. unicode_lbr = '\n\v\f\r\u0085\u2028\u2029'
  3. print( re.findall(r'.+', f'abc{unicode_lbr}def') )
Success #stdin #stdout 0.03s 9460KB
stdin
Standard input is empty
stdout
['abc', '\x0b\x0c\r\x85\u2028\u2029def']