Popular Posts
Commit file via SVNkit SVNKit version: SvnCommitter.java Translating 1.3 <html> <head>     <title>Translating 1.1</title>     <meta http-equiv="content-type" content="text... Text Symbols *&---------------------------------------------------------------------* *& Report ZA000020 ...
Stats
String.replaceAll()
String.prototype.replaceAll = function(oldValue, newValue) {
    return this.split(oldValue).join(newValue);
}