If e.DataRow("加工内容").StartsWith(",") Then MSGBOX(e.DataRow("加工内容")) e.DataRow("加工内容").Remove(0, 1) MSGBOX(e.DataRow("加工内容")) End If
2楼
有点蓝 发表于:2024/11/1 14:27:00
If e.DataRow("加工内容").StartsWith(",") Then MSGBOX(e.DataRow("加工内容")) e.DataRow("加工内容") = e.DataRow("加工内容").trimStart(",") MSGBOX(e.DataRow("加工内容")) End If