以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  字符串  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=194003)

--  作者:1234567
--  发布时间:2024/11/1 14:17:00
--  字符串

 如果字符串逗号开头,就删除逗号,代码要怎么写?

 If e.DataRow("加工内容").StartsWith(",") Then
        MSGBOX(e.DataRow("加工内容"))
        e.DataRow("加工内容").Remove(0, 1)
        MSGBOX(e.DataRow("加工内容"))
End If


--  作者:有点蓝
--  发布时间:2024/11/1 14:27:00
--  
 If e.DataRow("加工内容").StartsWith(",") Then
        MSGBOX(e.DataRow("加工内容"))
        e.DataRow("加工内容") = e.DataRow("加工内容").trimStart(",") 
        MSGBOX(e.DataRow("加工内容"))
End If