| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 403 人关注过本帖
标题:如何编程,在指定资料中,输入关键字,在另一文本中导出关键词所在的句子
只看楼主 加入收藏
xuzheng26
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2014-2-2
结帖率:0
收藏
已结贴  问题点数:20 回复次数:2 
如何编程,在指定资料中,输入关键字,在另一文本中导出关键词所在的句子
在指定资料中,输入关键词,在另一文本中导出关键词所在的句子。   
要求 可以运用在TXT文本或WORD中
求一款能把包含关键字的全部句子提取出来的软件

请大神修改这个程序
Dim WeiZhi As Integer
Private Sub cmdFind_Click()
'查找指定文本出现的位置
If Len(txtFind.Text) > 0 Then
WeiZhi = InStr(txtFile.Text, txtFind.Text)
End If
If WeiZhi > 0 Then
txtSub.Text = Mid(txtFile.Text, WeiZhi, 30)
cmdSave.Enabled = True
End
End Sub
Private Sub cmdOpen_Click()
Dim Str As String
With CommonDialog1
.InitDir = "D:\"
.Filter = "文本文件|*.txt"
.ShowOpen
End With
'如果没有指定文本名则退出
If Len(CommonDialog1.FileName) = 0 Then Exit Sub
'打开指定文本
Open CommonDialog1.FileName For Input As #1
txtFile.Text = ""
While Not EOF(1)
Input #1, Str
txtFile.Text = txtFile.Text & Str
Wend
Close #1
End Sub
Private Sub cmdSave_Click()
Dim Str As String
With CommonDialog1
.InitDir = "D:\"
.Filter = "文本文件|*.txt"
.ShowSave
End With
Str = txtSub.Text
'如果没有指定文本名则退出
If Len(CommonDialog1.FileName) = 0 Then Exit Sub
'写入指定文本
Open CommonDialog1.FileName For Output As #1
Write #1, Str
Close #1
End Sub
Private Sub cmdExit_Click()
'退出程序
End
End Sub
Private Sub txtFind_GotFocus()
txtFind.Text = ""
cmdFind.Enabled = False
End Sub
Private Sub txtFind_KeyUp(KeyCode As Integer, Shift As Integer)
If Len(txtFind.Text) > 0 Then
cmdFind.Enabled = True
Else
cmdFind.Enabled = False
End If
End Sub
搜索更多相关主题的帖子: 输入关键字 输入关键词 如何 资料 
2014-02-02 14:42
tlliqi
Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19
等 级:贵宾
威 望:204
帖 子:15453
专家分:65956
注 册:2006-4-27
收藏
得分:10 
vb写的?
2014-02-02 16:01
sdta
Rank: 20Rank: 20Rank: 20Rank: 20Rank: 20
来 自:江苏省连云港市
等 级:版主
威 望:335
帖 子:9841
专家分:27213
注 册:2012-2-5
收藏
得分:10 
上传数据表看看

坚守VFP最后的阵地
2014-02-02 23:41
快速回复:如何编程,在指定资料中,输入关键字,在另一文本中导出关键词所在的句 ...
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.029336 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved