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# で一致しない正規表現を取得しました。
string auth = @"oauth_consumer_key=""0685bd9184jfhq22"""; string pattern = "oauth_consumer_key=\"(\\d+)%"; MatchCollection matches = Regex.Matches(auth, pattern);
私はいつも0試合を取得します。認証文字列から 0685bd9184jfhq22 文字列を抽出しようとしています。