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

com.harium.suneidesis.linguistic.matcher.Regex Maven / Gradle / Ivy

The newest version!
package com.harium.suneidesis.linguistic.matcher;

public class Regex implements Matcher {

    private String regex;

    public Regex(String regex) {
        this.regex = regex;
    }

    public boolean matches(String[] tokens) {
        for (String token : tokens) {
            if (token.matches(regex)) {
                return true;
            }
        }
        return false;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy