Diese Lösung kombiniert einige frühere Antworten und entspricht etwas besser der vorgeschlagenen Standardlösung für August 2020. Diese Lösung ist für mich auch im September 2020 noch praktikabel, da String.replaceAll
ist nicht verfügbar in der node
Binärdatei, die ich verwende.
RegExp.escape
ist ein separates Thema, das hier aber wichtig ist, weil die offiziell vorgeschlagene Lösung automatisch die string
-basiert find
Eingabe. Diese String.replaceAll
Polyfill würde nicht ohne die RegExp.escape
Logik.
Ich habe eine Antwort hinzugefügt, die kein Polyfill beinhaltet RegExp.Escape
für den Fall, dass Sie das nicht wollen.
Wenn Sie eine RegExp
a find
Sie MUSS einschließen. g
als Flagge. Dieses Polyfill wird keinen netten TypeError für Sie bereitstellen und wird Ihnen eine große schlechte Zeit verursachen.
Wenn Sie exakte Standardkonformität für eine Anwendung benötigen, die sich strikt auf die Standardimplementierung verlässt, dann empfehle ich die Verwendung von babel
oder ein anderes Tool, das Ihnen jedes Mal die "richtige Antwort" liefert, anstatt SO dot com. Auf diese Weise erleben Sie keine Überraschungen.
Code:
if (!Object.prototype.hasOwnProperty.call(RegExp, 'escape')) {
RegExp.escape = function(string) {
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions#Escaping
// https://github.com/benjamingr/RegExp.escape/issues/37
return string.replace(/[.*+\-?^${}()|[\]\\]/g, '\\$&'); // $& means the whole matched string
};
}
if (!Object.prototype.hasOwnProperty.call(String, 'replaceAll')) {
String.prototype.replaceAll = function(find, replace) {
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/replaceAll
// If you pass a RegExp to 'find', you _MUST_ include 'g' as a flag.
// TypeError: "replaceAll must be called with a global RegExp" not included, will silently cause significant errors. _MUST_ include 'g' as a flag for RegExp.
// String parameters to 'find' do not require special handling.
// Does not conform to "special replacement patterns" when "Specifying a string as a parameter" for replace
// Does not conform to "Specifying a function as a parameter" for replace
return this.replace(
Object.prototype.toString.call(find) == '[object RegExp]' ?
find :
new RegExp(RegExp.escape(find), 'g'),
replace
);
}
}
Code, Minified:
Object.prototype.hasOwnProperty.call(RegExp,"escape")||(RegExp.escape=function(e){return e.replace(/[.*+\-?^${}()|[\]\\]/g,"\\$&")}),Object.prototype.hasOwnProperty.call(String,"replaceAll")||(String.prototype.replaceAll=function(e,t){return this.replace("[object RegExp]"==Object.prototype.toString.call(e)?e:new RegExp(RegExp.escape(e),"g"),t)});
Beispiel:
console.log(
't*.STVAL'
.replaceAll(
new RegExp(RegExp.escape('T*.ST'), 'ig'),
'TEST'
)
);
console.log(
't*.STVAL'
.replaceAll(
't*.ST',
'TEST'
);
);
Code ohne RegExp.Escape
:
if (!Object.prototype.hasOwnProperty.call(String, 'replaceAll')) {
String.prototype.replaceAll = function(find, replace) {
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/replaceAll
// If you pass a RegExp to 'find', you _MUST_ include 'g' as a flag.
// TypeError: "replaceAll must be called with a global RegExp" not included, will silently cause significant errors. _MUST_ include 'g' as a flag for RegExp.
// String parameters to 'find' do not require special handling.
// Does not conform to "special replacement patterns" when "Specifying a string as a parameter" for replace
// Does not conform to "Specifying a function as a parameter" for replace
return this.replace(
Object.prototype.toString.call(find) == '[object RegExp]' ?
find :
new RegExp(find.replace(/[.*+\-?^${}()|[\]\\]/g, '\\$&'), 'g'),
replace
);
}
}
Code ohne RegExp.Escape
, Verkleinert:
Object.prototype.hasOwnProperty.call(String,"replaceAll")||(String.prototype.replaceAll=function(e,t){return this.replace("[object RegExp]"==Object.prototype.toString.call(e)?e:new RegExp(e.replace(/[.*+\-?^${}()|[\]\\]/g,"\\$&"),"g"),t)});