Public signup for this instance is disabled. Go to our Self serve sign up page to request an account. Report potential security issues privately
Operating System: All Platform: Other
The following example from the javadoc is incorrect.
StringUtils.replace("aba", "a", "") = "aba"
it should be:
StringUtils.replace("aba", "a", "") = "b"