以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  老师您好,string 中的段落 应该用什么表示?  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=106778)

--  作者:rxfmrqq
--  发布时间:2017/9/15 14:06:00
--  老师您好,string 中的段落 应该用什么表示?

dim d as string = e.Form.Controls("TextBox1").text
If d.Contains(",") = True Or d.Contains(".") Or d.Contains(";") = True Then
    d=d.Replace(",","" & vbcrlf & "")
    d=d.Replace(".","" & vbcrlf & "")
    d=d.replace(";","" & vbcrlf & "")
    e.Form.Controls("TextBox2").text = d
    For i As Integer = d.lines.count -1 To 0 Step -1(然而,提示我lines只能用在 textbox上那么这里我该怎么办?)


    Next
End I


--  作者:有点甜
--  发布时间:2017/9/15 14:50:00
--  

不能直接用

 

Dim d As String = "abc" & vbcrlf & "123"
Dim ary() As String = d.replace(chr(10), "").split(chr(13))
For i As Integer = ary.length-1 To 0 Step -1
    msgbox(ary(i))
Next

 

http://www.foxtable.com/webhelp/scr/0760.htm