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.
Webページソースからのリンクに一致する正規表現を探しています。コードサンプルがある場合は、それが適用されます。
ありがとう
属性値を一致hrefさせるには、次の方法を使用できます。
href
final Pattern pattern = Pattern.compile("href=\"(.*+)\""); Matcher matcher = pattern.matcher(html); String link = null; while (matcher.find()) { link = matcher.group(1); Log.i("my.regex", "Found link: " + link); }