この質問のフォローアップ Regex to match pattern with subdomain in java
以下のパターンを使用して、ドメインとサブドメインを一致させます
Pattern pattern = Pattern.compile("http://([a-z0-9]*.)example.com");
このパターンは次のものと一致します
http://asd.example.com
http://example.example.com
http://www.example.com
しかし、それは一致していません
http://example.com
どなたかマッチング方法を教えていただけないhttp://example.com
でしょうか?