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.
VB 2010 と Regex を使用して、HTML ブロック内のパターン "[number]/[number]" のテキストを検索しています。どの正規表現検索パターンを使用すればよいですか? ありがとう !
(\d+)\s*\/\s*(\d+)
説明:
(\d+): One or more digits. Captured in first group. \s* : Zero or more space like chars \/ : The `/`. Escaped. \s* : Zero or more space like chars (\d+): One or more digits. Captured in second group.