有一段文本中包含若干個(gè)“[_______]”符號(hào),也就是中括號(hào)之間包含若干個(gè)下劃線,下劃線的個(gè)數(shù)不同,但至少有一個(gè)。要求將每個(gè)這樣的符號(hào)都替換成文本框,同時(shí)文本框的size和maxlength是所替換的符號(hào)中下劃線的字符長度,也就是替換成以下文本 <input type="text" size="下劃線長度" maxlenght=''下劃線長度'' />
2 回答

精慕HU
TA貢獻(xiàn)1845條經(jīng)驗(yàn) 獲得超8個(gè)贊
Code string input = "你好,[______]"; Regex regex = new Regex("_+"); Match match = regex.Match(input); input = input.Replace(string.Format("[{0}]", match.Value), string.Format("<input type='text' size={0} maxlength={0}/>", match.Value.Length)); this.form1.InnerHtml = input;
- 2 回答
- 0 關(guān)注
- 669 瀏覽
添加回答
舉報(bào)
0/150
提交
取消