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 文字列に置き換えます。
これはテストです..
@ヘッダー_HTML
@ボディHTML
そこで、変数文字列「@Header_HTML」と@BodyHTMLをそれぞれ取得したいと思います。
これらの変数文字列を渡してストアド プロシージャを呼び出します。
正規表現を使用:
Regex ItemRegex = new Regex(@"\@[a-zA-Z_]+", RegexOptions.Compiled); foreach (Match ItemMatch in ItemRegex.Matches(sourceString)) { Console.WriteLine(ItemMatch); }