org.unlaxer.parser.posix.WordParser Maven / Gradle / Ivy
package org.unlaxer.parser.posix;
import org.unlaxer.parser.elementary.MappedSingleCharacterParser;
public class WordParser extends MappedSingleCharacterParser {
private static final long serialVersionUID = -3800965382577159876L;
public WordParser() {
super("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_");
}
public final static WordParser SINGLETON = new WordParser();
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy