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.
次のような文字列がある場合: var myString="{text} and {text1} are going to {text2}."
var myString="{text} and {text1} are going to {text2}."
{text} の合計数を取得するにはどうすればよいC#ですか? 私の場合:3
C#
で考えているのですregexが、 の書き方がわかりません{text}。
regex
{text}
編集: {number} の代わりに {text} が必要です
このコード行を試してください(質問の編集後に回答が更新されました)-中括弧内のテキストに一致するようになりました:
Regex.Matches(myString, @"\{[^}]+\}").Count