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# のプロジェクトに参加しており、括弧内にある値を取得する必要があります。コードは<$ Execute ['WebF'] $>値 WebF を返したいです。あなたの助けに感謝します。
<$ Execute ['WebF'] $>
@編集
マイコード<$Execute['WebF']$>にスペースがありません
<$Execute['WebF']$>
doNet に感謝します :)。値を返したコード\<\$+Execute+\['(?<DATA>\w+)'\]+\$\>
\<\$+Execute+\['(?<DATA>\w+)'\]+\$\>
\<\$\s+Execute\s+\['(?<DATA>\w+)'\]\s+\$\>
ExplicitCaptureフラグとIgnoreCaseフラグを使用して実行します。