com.slimgears.util.stream.Patterns Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stream-utils Show documentation
Show all versions of stream-utils Show documentation
General purpose utils / module: stream-utils
package com.slimgears.util.stream;
import java.util.regex.Pattern;
public class Patterns {
public static Pattern fromWildcard(String wildcard) {
String regex = "^" + wildcard
.replace(".", "\\.")
.replace("?", ".")
.replace("*", ".*") + "$";
return Pattern.compile(regex);
}
}