I want to know if the methods from StringUtils from Apache Commons Lang library runs faster than Java String methods.
I know this is micro-optimization, but it’s necessary because methods will be executed millions times.
Methods that using regex in Java like split() or String comparison with equals().
StringUtils#splitis faster thanString#split.String#equalsis faster thanStringUtils#equals.