用vb如何批量把QQ号码变成qq邮箱?
发布网友
发布时间:2022-05-21 01:44
我来回答
共2个回答
热心网友
时间:2023-10-11 01:55
Dim strTxt() As String
Dim strTemp As String
strTemp=Text1.Text
strTxt=Split(strTemp,vbCrlf)
for i=lbound(strTxt) to ubound(strTxt)
strTxt(i)=strTxt(i) & "@qq.com"
next i
Text1.Text=Join(strTxt,vbCrlf)
【测试通过】
热心网友
时间:2023-10-11 01:55
Private Sub command1_click()
Dim r As String
r = Text1.Text
r = Replace(r, vbCrLf, "@qq.com" + vbCrLf)
Text1.Text = r
End Sub