Skip to content

Instantly share code, notes, and snippets.

@kalgon
kalgon / Glob.java
Created March 19, 2018 10:00
Example of globs in java
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Glob {
private static final Pattern PATTERN = Pattern.compile("\\.|\\?|\\*+");
public static Pattern toPattern(String glob, int flags) {
return Pattern.compile(toRegex(glob), flags);
}