这是我的代码,用于找到 {} 之间的字符串:
var text = "Hello this is a {Testvar}...";
int tagFrom = text.IndexOf("{") + "{".Length;
int tagTo = text.LastIndexOf("}");
String tagResult = text.Substring(tagFrom, tagTo - tagFrom);
tagResult输出: Testvar
这只能使用一次。 如何将其应用于多个标签? (例如,在While循环中)
例如:
var text = "Hello this is a {Testvar}... and we have more {Tagvar} in this string {Endvar}.";
tagResult[]
输出(例如数组): Testvar , Tagvar , Endvar