Class CommonPatterns

java.lang.Object
io.github.bakedlibs.dough.common.CommonPatterns

public final class CommonPatterns extends Object
This class is created for common-use patterns used in things such as String.split(String).
Every time something like String.split(String) is called it will compile a Pattern, for code that is called often this can be a massive performance loss. This class solves that, one compile but many uses!
Author:
Walshy, TheBusyBiscuit