字符串格式从前端更改

时间:2012-12-19 05:43:32

标签: c# sql database string

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

有人有任何想法吗?

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

Str1获取0515,但我希望显示为1505

2 个答案:

答案 0 :(得分:1)

string temp = ds.table[0].rows[a][5];
string Str1 = temp.Substring(2) + temp.Substring(0, 2);

答案 1 :(得分:0)

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

string Str1 = string.Format("{0}{1}", s1.Substring(2), s1.Substring(0, 2));