Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import java.util.ArrayList;

import java.util.List;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class Main {
    public static List getHtmlTagContent(String html, String tagname) {
        List resultList = new ArrayList();
        Pattern p = Pattern.compile("<" + tagname + ">([^</" + tagname + ">]*)");
        Matcher m = p.matcher(html);
        while (m.find()) {
            resultList.add(m.group(1));
        }
        return resultList;
    }
}