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

tech.deplant.java4ever.utils.regex.Symbol Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
package tech.deplant.java4ever.utils.regex;

public record Symbol(char symbol) implements RegExpBuilder {
	@Override
	public String build() {
		String str = String.valueOf(symbol());
		if (RESERVED_SYMBOLS.contains(str)) {
			str = String.format("\\%s", str);
		}
		return str;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy