本文介绍了我想删除字母开头的字符 - 的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我运行SP输出时如下



区域颜色代码

绿色 - #008000



i想要输出如下



区域颜色代码

绿色



this.Zone.InnerText = value.Tables [0] .Rows [0] [ZoneColor]。ToString();





我怎么能用C#



我尝试过:



当我运行SP输出时如下



区域颜色代码

绿色 - #008000



i想要输出如下



区域颜色代码

绿色



this.Zone.InnerText = value.Tables [0] .Rows [0] [ZoneColor]。ToString();





我怎么能用C#

when i run the SP output as follows

Zone color code
Green-#008000

i want output as follows

Zone color code
Green

this.Zone.InnerText = value.Tables[0].Rows[0]["ZoneColor"].ToString();


for that how can i do in C#

What I have tried:

when i run the SP output as follows

Zone color code
Green-#008000

i want output as follows

Zone color code
Green

this.Zone.InnerText = value.Tables[0].Rows[0]["ZoneColor"].ToString();


for that how can i do in C#

推荐答案


这篇关于我想删除字母开头的字符 - 的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 06:03