gpt4 book ai didi

Python实现把回车符\r\n转换成\n

转载 作者:qq735679552 更新时间:2022-09-29 22:32:09 27 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章Python实现把回车符\r\n转换成\n由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

最近在做cocos2d-x的简明配置,发现有的朋友的文本编辑器,自动将\r\n截断成\n,(在unix上换行使用\n,windows上,换行使用的是\r\n)于是,写了这个脚本,希望对一些朋友有所帮助,不用一行一行去改 。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import os
 
def replace(filePath, w2u):
   try :
     oldfile = open (filePath, "rb+" )     #这里必须用b打开
     path, name = os.path.split(filePath)
     newfile = open (path + '$' + name, "ba+" )
    
     old = b''
     new = b''
     if w2u = = True :
       old = b '\r'
       new = b''
     else :
       old = b '\n'
       new = b '\r\n'
 
     data = b''
     while ( True ):
       data = oldfile.read( 200 )
       newData = data.replace(old, new)
       newfile.write(newData)
       if len (data) < 200 :
         break
     newfile.close()
     oldfile.close()
    
     os.remove(filePath)
     os.rename(path + '$' + name, filePath)
   except IOError as e:
     print (e)
    
if __name__ = = "__main__" :
   print ( "请输入文件路径:" )
   filePath = input ()
   replace(filePath, False #这个改为True就可以实现\n变成\r\n

要注意的是,在python里,像\r\n这样的符号,如果是文本打开的话,是找不到\r\n的,而只能找到'\n',所以必须用b(二进制)模式打开.

最后此篇关于Python实现把回车符\r\n转换成\n的文章就讲到这里了,如果你想了解更多关于Python实现把回车符\r\n转换成\n的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com