我想知道是否有任何方法可以替換字符串中的子字符串,但替換它們之間的替換字符串。 I.E,匹配字符串"**"
的所有出現,並用"<strong>"
代替第一次出現,然後用"</strong>"
代替第一次出現(然後重複該模式)。交替替換子串
的投入將是這樣的:"This is a sentence with **multiple** strong tags which will be **strong** upon output"
而返回的輸出將是:"This is a sentence with <strong>multiple</strong> strong tags which will be <strong>strong</strong> upon output"
您可以在循環中將'IndexOf'與開始索引一起使用。 – CodesInChaos 2012-04-04 10:49:50
@CodeInChaos我沒有真正使用IndexOf,經常會看看它,但你會有任何實現方法? – JakeJ 2012-04-04 10:51:18