0

我在 C# 中有以下字符串。我会让每个变量字符串以特殊字符“@”开头并替换为存储的 proc 字符串。

这是一个测验..

@Header_HTML

@BodyHTML

所以,我想获取每个变量字符串“@Header_HTML”和@BodyHTML。

调用传递这些变量字符串的存储过程。

4

1 回答 1

0

使用正则表达式:

Regex ItemRegex = new Regex(@"\@[a-zA-Z_]+", RegexOptions.Compiled);
        foreach (Match ItemMatch in ItemRegex.Matches(sourceString))
        {
            Console.WriteLine(ItemMatch);
        }
于 2013-08-22T23:19:47.130 回答