跳至主要內容

String#replaceAll

小于 1 分钟featurees-proposalmissing-example

String#replaceAllopen in new window

注意

你可能需要加载core-js/es|stable|actual|full/string/replace以 polyfill RegExp[Symbol.replace]。否则当第一个参数为正则表达式且第二个参数为函数时,替换函数的参数可能与规范不一致。

类型

interface String {
  replaceAll(
    searchValue: string | RegExp,
    replacer: string | ((searchValue: string, ...args: any[]) => string)
  ): string;
}

入口点

core-js/proposals/string-replace-all-stage-4