0

这里我有一个字符串值0515,我想1505从前端(C#)显示。

有人知道吗?

String Str1 = ds.table[0].rows[a][5];

Str1我得到,0515但我想显示为1505

4

2 回答 2

1
string temp = ds.table[0].rows[a][5];
string Str1 = temp.Substring(2) + temp.Substring(0, 2);
于 2012-12-19T05:52:09.620 回答
0

不使用连接字符串的另一种方法如下

string Str1 = string.Format("{0}{1}", s1.Substring(2), s1.Substring(0, 2));
于 2012-12-19T05:58:49.033 回答