以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  [求助]字符串结尾判断  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=178042)

--  作者:miaoqingqing
--  发布时间:2022/6/15 17:54:00
--  [求助]字符串结尾判断
面积=0.662 ㎡
面积=1445000.000 m㎡
求助上面结尾字符串用 EndsWith,怎么写代码 区分平方米和平方毫米

 Dim s As String = e.DataRow("犀牛面积长度")

 If s.EndsWith("")

 If s.EndsWith("m㎡")



--  作者:有点蓝
--  发布时间:2022/6/16 8:32:00
--  

 Dim s As String = e.DataRow("犀牛面积长度")

 If s.EndsWith("m㎡") then

msgbox("平方毫米")

elseif s.EndsWith("")

msgbox("平方米")

end if