[VB.NET] 正規表現…マッチ文字列の取得

2010年4月21日

正規表現でマッチさせた文字列を取得する際の例。
どうもよく忘れるのでメモ。

    Dim match As Match = Regex.Match("tagrget", "(?<name>.*)")
    If match.Groups("name").Success = True Then
        Debug.Print(match.Groups("name").Value)
    End If





カテゴリー: Program, VB.NET

Follow comments via the RSS Feed | Leave a comment | Trackback URL

コメントを投稿する

日本語が含まれない投稿は無視されますのでご注意ください。(スパム対策)


«   »
 
Powered by Wordpress and MySQL. Theme by Shlomi Noach, openark.org