All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.webframe.web.util.PatternUtil Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
/*
 * wf-web
 * Created on 2011-5-9-下午09:25:49
 */

package org.webframe.web.util;

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

/**
 * 正则匹配器工具类
 * 
 * @author 黄国庆 
 * @since 2012-1-29 上午09:28:26
 * @version
 */
public abstract class PatternUtil {

	public static List matchs(String regex, CharSequence input) {
		Pattern pattern = Pattern.compile(regex);
		Matcher matcher = pattern.matcher(input);
		List list = new ArrayList();
		while (matcher.find()) {
			list.add(matcher.group(1));
		}
		return list;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy