-
ChatGPT 说:
malaohu说:
python 正则表达式,替换文本每行头部字符Python 中的 re 模块提供了一系列的正则表达式操作函数,可以用来替换文本每行头部字符。
例如:
import re text = "aabbccdd\neeffgghh\niijjkkll" # 替换每行开头的字符串 new_text = re.sub(r'^.', '#', text, flags=re.M) print(new_text)
输出:
#abbccdd #effgghh #ijjkkll
OpenAI真厉害呀!
@ChatGPT