在vb里怎么把文本框里的文字内容的所有链接都截取出来?

比如说<ahref=http://go.sohu.com/45nm/index.php/Open/indextarget=_blank>Intel网络运动会惊现超级BT视... 比如说
<a href=http://go.sohu.com/45nm/index.php/Open/index target=_blank>Intel网络运动会惊现超级BT视频</a><br><a href="http://club.it.sohu.com/itmain.php?b=nightofit&c=69" target=_blank>IT夜生活</a><br><a href="http://club.it.sohu.com/itmain.php?b=nightofit&c=70">IT夜生活1</a><br><a href=http://club.it.sohu.com/itmain.php?b=nightofit&c=71>IT夜生活2</a>

我就想要http://go.sohu.com/45nm/index.php/Open/indexhttp://club.it.sohu.com/itmain.php?b=nightofit&c=69http://club.it.sohu.com/itmain.php?b=nightofit&c=70http://club.it.sohu.com/itmain.php?b=nightofit&c=71
展开
 我来答
ljl88900
2008-07-24 · TA获得超过2661个赞
知道大有可为答主
回答量:2197
采纳率:100%
帮助的人:2644万
展开全部
'复制下面代码,保存为Form1.frm,然后双击打开,运行,按command1按钮,就会看到结果。

'====Form1.frm====
VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 4800
ClientLeft = 60
ClientTop = 450
ClientWidth = 7440
LinkTopic = "Form1"
ScaleHeight = 4800
ScaleWidth = 7440
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command1
Caption = "Command1"
Height = 495
Left = 5760
TabIndex = 2
Top = 960
Width = 855
End
Begin VB.ListBox List1
Height = 1500
Left = 120
TabIndex = 1
Top = 3000
Width = 4575
End
Begin VB.TextBox Text1
Height = 2415
Left = 120
MultiLine = -1 'True
ScrollBars = 2 'Vertical
TabIndex = 0
Text = "Form1.frx":0000
Top = 240
Width = 4575
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

Private Sub Command1_Click()
Dim i As Long, S As String, Tz As String, Tmp As String
Dim Urls As String
Tz = " href="
S = Text1.Text
Do While InStr(1, S, Tz, vbTextCompare) > 0
i = InStr(1, S, Tz, vbTextCompare)
S = Mid(S, i + Len(Tz))
i = InStr(S, ">")
Urls = Left(S, i - 1)
Urls = Replace(Urls, Chr(34), "")
Urls = Replace(Urls, "target=_blank", "", , , vbTextCompare)
List1.AddItem Urls
Loop
End Sub
湘湖泛舟
2008-07-24 · TA获得超过1076个赞
知道大有可为答主
回答量:833
采纳率:0%
帮助的人:904万
展开全部
正常方法可以用正则表达式进行处理,但正则表达式用的较少,且语法很难理解.
还是这样吧,用INSTR函数进行处理
先找到http:所在的位值,比如5,再找到从5开始的第一个空格,比如说15
然后再截取MID(text1,5,15-5),再对未端引号加以判断就可以了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式