Node.js examples for String:String Value
Remove Links from String
String.prototype.removelinks = function() { var regexp = /<a [^>]*>(.*)<\/a>/gi; return this.replace(regexp, '$1'); };