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

com.slimgears.util.stream.Patterns Maven / Gradle / Ivy

There is a newer version: 0.7.58
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy