python将指定文本中的字符串替换后,生成新的文本文件。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python将指定文本中的字符串替换后,生成新的文本文件。相关的知识,希望对你有一定的参考价值。

比如我在D盘有个txt文件(D:\pp.txt)我想讲pp.txt中文件中所有的love变为hate,yes变为no,然后生成pp2.txt在D盘 ,请问怎么实现啊 ,因为每行都有一定的空格数,我不要删除那些空格,所有我想每行每行的找到love字符,然后改为hate,接着找到yes改为no,最后下一行继续。。。也就是逐行找,然后改吧。我是才接触python,而且又不是计算机专业的,谢谢好心人帮我写段代码。火山口棉衣跪求了,我自己也在努力入门中。
我连怎么读入pp.txt 都不会,主要不知道怎么定位到D盘,还有生成新的文件也很迷茫,再次谢谢了。

Python替换某个文本中的字符串,然后生成新的文本文档,代码如下:

import os
os.chdir(\'D:\\\\\')       # 跳到D盘
if not os.path.exists(\'test1.txt\'): # 看一下这个文件是否存在
exit(-1)                         #不存在就退出
lines = open(\'test1.txt\').readlines()  #打开文件,读入每一行
fp = open(\'\'test2.txt\',\'w\')  #打开你要写得文件test2.txt
for s in lines:
# replace是替换,write是写入
fp.write( s.replace(\'love\',\'hate\').replace(\'yes\',\'no\'))    
fp.close()  # 关闭文件
参考技术A import os

os.chdir('d:\\') # 跳到D盘

if not os.path.exists('pp.txt'): # 看一下这个文件是否存在
exit(-1) #,不存在就退出

lines = open('pp.txt').readlines() #打开文件,读入每一行

fp = open('pp2.txt','w') #打开你要写得文件pp2.txt
for s in lines:
fp.write( s.replace('love','hate').replace('yes','no')) # replace是替换,write是写入
fp.close() # 关闭文件本回答被提问者和网友采纳
参考技术B infile = open("D:/pp.txt", "r") #打开文件
outfile = open("D:/pp2.txt", "w") # 内容输出

for line in infile: #按行读文件,可避免文件过大,内存消耗
outfile.write(line.replace('love', 'hate').replace('yes','no'))
infile.close() #文件关闭
outfile.close()

Java Word中的文本图片替换功能

Word中的替换功能以查找指定文本然后替换为新的文本,可单个替换或全部替换。以下将要介绍的内容,除常见的以文本替换文本外,还将介绍使用不同对象进行替换的方法,具体可包括:

1. 指定字符串内容替换文本(通过方法replce(matchString, newValue, caseSensitive, wholeWord );直接指定替换的新字符串内容)

2. 获取文档内容替换文本(通过方法replace(String matchString, TextSelection textSelection, boolean caseSensitive, boolean wholeWord);替换指定文本)

3. 图片替换文本

4. 图片替换图片

 使用工具及jar导入

需要使用 Free Spire.Doc for Java 的jar包,可手动下载并解压导入Spire.Doc.jar文件到Java程序,也可以通过maven仓库下载导入。

【示例1】指定字符串内容替换文本

import com.spire.doc.*;

public class ReplaceTextWithText {
    public static void main(String[] args) {
        //加载文档
        Document doc = new Document();
        doc.loadFromFile("test.docx");

        //要替换第一个出现的指定文本,只需在替换前调用setReplaceFirst方法来指定只替换第一个出现的指定文本
        //doc.setReplaceFirst(true);

        //调用方法用新文本替换原文本内容
        doc.replace("系统测试", "System Testing", false, true);

        //保存文档
        doc.saveToFile("ReplaceAllText.docx",FileFormat.Docx_2013);
        doc.dispose();
    }
}

 

【示例2】获取文档内容替换文本

import  com.spire.doc.*;
import com.spire.doc.documents.TextSelection;

public class ReplaceTextWithDocument {
    public static void main(String[] args) {
        //加载文档1
        Document doc1 = new Document();
        doc1.loadFromFile("test.docx");

        //加载文档2
        Document doc2 = new Document();
        doc2.loadFromFile("TargetFile.docx");
        //查找文档2中的指定内容
        TextSelection textSelection = doc2.findString("Falling under the scope of black box testing, " +
                "system testing is a phase in the software " +
                "testing cycle where a total and integrated" +
                " application /system is tested.",false,false);

        //用文档2中查找到的内容替换文档1中的指定字符串
        doc1.replace("System Test, ST",textSelection,false,true);

        //保存文档1
        doc1.saveToFile("ReplaceTextWithDocument.docx",FileFormat.Docx_2013);
        doc1.dispose();
    }
}
两个用于测试的文档如下,将文档2中的文本内容替换文档1中的指定文本内容:

替换结果:

 

【示例3】图片替换文本

import com.spire.doc.*;
import com.spire.doc.documents.TextSelection;
import com.spire.doc.fields.DocPicture;
import com.spire.doc.fields.TextRange;

public class ReplaceTextWithImg {
    public static void main(String[] args) {
        //加载文档
        Document doc = new Document("test.docx");
        //查找需要替换的字符串
        TextSelection[] textSelection = doc.findAllString("系统测试",true,false);
        int index ;

        //加载图片替换文本字符串
        for (Object obj : textSelection) {
            TextSelection Selection = (TextSelection)obj;
            DocPicture pic = new DocPicture(doc);
            pic.loadImage("tp.png");
            TextRange range = Selection.getAsOneRange();
            index = range.getOwnerParagraph().getChildObjects().indexOf(range);
            range.getOwnerParagraph().getChildObjects().insert(index,pic);
            range.getOwnerParagraph().getChildObjects().remove(range);
        }
        //保存文档
        doc.saveToFile("ReplaceTextWithImage.docx", FileFormat.Docx_2013);
        doc.dispose();
    }
}

 

【示例4】图片替换图片

import com.spire.doc.*;
import com.spire.doc.documents.Paragraph;
import com.spire.doc.fields.DocPicture;

public class ReplacePictureWithPicture {
    public static void main(String[] args) {
        //加载Word文档
        Document doc = new Document();
        doc.loadFromFile("sample.docx");

        //获取文档中的指定段落
        Section section = doc.getSections().get(0);
        Paragraph para = section.getParagraphs().get(0);
        //替换段落中的第一张图片
        Object obj = para.getChildObjects().get(0);
        if(obj instanceof DocPicture){
            DocPicture pic = (DocPicture)obj;
            pic.loadImage("tp.png");
        }

        /*//批量替换图片
        for(int i =0;i < section.getParagraphs().getCount();i++){
            Object obj = section.getParagraphs().get(i).getChildObjects();
            if(obj instanceof DocPicture){
                DocPicture pic = (DocPicture)obj;
                pic.loadImage("tp.png");
            }
        }*/

        //保存结果文档
        doc.saveToFile("ReplaceWithImage.docx", FileFormat.Docx_2013);
        doc.dispose();
    }
}

 

(完)

以上是关于python将指定文本中的字符串替换后,生成新的文本文件。的主要内容,如果未能解决你的问题,请参考以下文章

Java Word中的文本图片替换功能

python 替换指定目录下,所有文本字符串

linux下如何将第一行中指定的字符全部替换掉

如何从python中的文本文档中删除所有标点符号和其他符号?

如何在一列字符串中找到特定的数字模式并将该值替换为该序数的文本版本?

java中怎么进行字符串替换?