当前位置: 代码迷 >> ASP.NET >> 怎么在指定的字符串前增加指定的字符串
  详细解决方案

怎么在指定的字符串前增加指定的字符串

热度:4338   发布时间:2013-02-25 00:00:00.0
如何在指定的字符串前增加指定的字符串?
字符串如:NotNull(document.getElementById('datalist_Report_ctl00_dr1_gvItem_ctl03_vtbMonthValue_Text_Month'))NotNull(document.getElementById('datalist_Report_ctl00_dr1_gvItem_ctl04_vtbMonthValue_Text_Month'))NotNull(document.getElementById('datalist_Report_ctl00_dr1_gvItem_ctl05_vtbMonthValue_Text_Month'))NotNull(document.getElementById('datalist_Report_ctl00_dr1_gvItem_ctl06_vtbMonthValue_Text_Month'))

我想在每一个NotNull前面增加一个; 分号,第一个除外?怎么写?

------解决方案--------------------------------------------------------
Replace(")NotNull", ");NotNull");
  相关解决方案