Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 C# 中有以下字符串。我会让每个变量字符串以特殊字符“@”开头并替换为存储的 proc 字符串。
这是一个测验..
@Header_HTML
@BodyHTML
所以,我想获取每个变量字符串“@Header_HTML”和@BodyHTML。
调用传递这些变量字符串的存储过程。
使用正则表达式:
Regex ItemRegex = new Regex(@"\@[a-zA-Z_]+", RegexOptions.Compiled); foreach (Match ItemMatch in ItemRegex.Matches(sourceString)) { Console.WriteLine(ItemMatch); }