http://www.test.com/test.aspx?testinfo=&|&
查找並通過對循環
我想從一個表中的值來代替&。我的姓名和年齡兩個PARAMATERS,我需要substitue並獲得網址如下:
http://www.test.com/test.aspx?testinfo=name|age
如果我有3個字符串參數被替換爲一個網址:
http://www.test.com/test.aspx?testinfo=&|&
即姓名,年齡,地址爲上述網址:
http://www.test.com/test.aspx?testinfo=name|age|address
string URL=string.Empty;
URL=http://www.test.com/test.aspx?testinfo=&|&;
//in this case fieldsCount is 2, ie. name and age
for(int i=0; i<fieldsCount.Length-1;i++)
{
URL.Replace("*","name");
}
如何添加「年齡」以便獲得?任何輸入都會有幫助。
http://www.test.com/test.aspx?testinfo=name|age
這個職位是不是很清楚。你可以嘗試編輯你的文章嗎? –