From man sed: 我 i正则表达式匹配的I修饰符是GNU扩展, 使sed匹配不区分大小写的正则表达式.The I modifier to regular-expression matching is a GNU extension which makes sed match regexp in a case-insensitive manner.测试$ cat filefirstFiRstFIRSTfir3st$ sed 's/[Ff][Ii][Rr][Ss][Tt]/last/g' filelastlastlastfir3st$ sed 's/first/last/Ig' filelastlastlastfir3st 这篇关于在某些模式之前添加文本时,在忽略大小写的情况下使用sed的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 08-14 17:28