我有一个像这样的字符串:
FIRST CONTINUATION PAGE FOR ITEM 29 – Establishment Information
Add Second Continuation Page for #29
<<
/ASCII85EncodePages false
/AllowTransparency false
/AutoPositionEPSFiles true
/AutoRotatePages /None
/Binding /Left
/CalGrayProfile (Dot Gain 20%)
/CalRGBProfile (sRGB IEC61966-2.1)
我想在找到<<字符后删除文件中的所有行。如何使用正则表达式做到这一点
答案 0 :(得分:4)
最简单的解决方案:
your_string = "whatever.................."
sliced_string = your_string.split("<<")[0]
就是这样。