org.unlaxer.parser.posix.PunctuationParser Maven / Gradle / Ivy
package org.unlaxer.parser.posix;
import org.unlaxer.parser.StaticParser;
import org.unlaxer.parser.elementary.MappedSingleCharacterParser;
public class PunctuationParser extends MappedSingleCharacterParser implements StaticParser{
private static final long serialVersionUID = -7842848328375562225L;
// TODO separate puncture and symbols
public PunctuationParser() {
super("!\"#$%&'()*+,\\-./:;<=>?@[]^_`{|}~");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy