注册 登录
编程论坛 VB6论坛

VB如何查找替换文本中的字符

jingfang_434 发布于 2023-07-26 10:35, 1049 次点击
请高手指点一下,我想把以下内容替换为其他内容,改如何编写代码:
文本内容如下:
d:\测试\001\0001-0001.jpg
d:\测试\001\0001-0002.jpg
d:\测试\001\0001-0003.jpg
d:\测试\001\0001-0004.jpg
d:\测试\001\0001-0005.jpg

操作后变为以下内容
压缩 e:\测试\001\0001-0001.jpg
压缩 e:\测试\001\0001-0002.jpg
压缩 e:\测试\001\0001-0003.jpg
压缩 e:\测试\001\0001-0004.jpg
压缩 e:\测试\001\0001-0005.jpg
4 回复
#2
约定的童话2023-07-26 12:34

Sub ReplaceText()
    Dim text As String
    Dim newText As String
   
    '将文本内容读取到字符串变量中
    Open "d:\测试\001\文件路径.txt" For Input As #1
    text = Input$(LOF(1), 1)
    Close #1
   
    '替换文本内容
    newText = Replace(text, "d:\测试\001\", "压缩 e:\测试\001\")
   
    '将替换后的内容写入新文件
    Open "d:\测试\001\文件路径(替换后).txt" For Output As #2
    Print #2, newText
    Close #2
End Sub
#3
jingfang_4342023-07-26 17:37
回复 2楼 约定的童话
谢谢,我试试
#4
yuma2023-07-28 12:55
Private Sub Form_Load()
    Dim sFileContent As String
    Dim sLine As String
    Dim iFileNum As Integer
    Dim iFileNumNew As Integer
   
    ' 打开原始文件
    iFileNum = FreeFile
    Open "C:\Users\Admin\Desktop\input.txt" For Input As #iFileNum
   
    ' 创建新的文本文件
    iFileNumNew = FreeFile
    Open "C:\Users\Admin\Desktop\output.txt" For Output As #iFileNumNew
   
    ' 读取原始文件的每一行并在每行前添加两个汉字
    Do Until EOF(iFileNum)
        Line Input #iFileNum, sLine
        If sLine = "" Then
            ' 如果行为空,直接写入新文件
            Print #iFileNumNew, sLine
        Else
            ' 如果行不为空,添加文字后写入新文件
            sFileContent = "压缩 " & sLine
            Print #iFileNumNew, sFileContent
        End If
    Loop
   
    ' 关闭文件
    Close #iFileNum
    Close #iFileNumNew
End Sub
#5
jingfang_4342023-07-28 15:57
回复 4楼 yuma
谢谢您,很好用
1