欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

CSS 文本上下标_html/css_WEB-ITnose

程序员文章站 2022-06-05 21:49:37
...
public string GetHtml(object obj)        {            string result = "";            System.Text.RegularExpressions.Regex regex = new System.Text.RegularExpressions.Regex("{.*,.*,.*}");            string matchResult = regex.Match(obj.ToString()).ToString();            if (string.IsNullOrEmpty(matchResult))            {                result = obj.ToString();            }            else            {                string[] strs = matchResult.Replace("{", "").Replace("}", "").Split(',');                result = "
"; result += ""; result += ""; result += "
" + strs[0] + "" + strs[1] + "
" + strs[2] + "
"; } return result; }



以上代码主要是为了获取3个值, strs[0]=759 strs[1]=+0.6 strs[0]=-0.4 这样用来显示上下



??

??

相关标签: CSS 文本上下标