javascript RegExp_replace_with_funciton

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript RegExp_replace_with_funciton相关的知识,希望对你有一定的参考价值。

function styleHyphenFormat(propertyName) {
  function upperToHyphenLower(match) {
    return '-' + match.toLowerCase();
  }
  return propertyName.replace(/[A-Z]/g, upperToHyphenLower);
}

function cssStyle2DomStyle(sName) {
  let result = sName.replace(/-\w/g, function (match) {
    return match.slice(1).toUpperCase();
  });
  return result.charAt(0).toLowerCase() + result.slice(1);
}

以上是关于javascript RegExp_replace_with_funciton的主要内容,如果未能解决你的问题,请参考以下文章

hive函数REGEXP_REPLACE用法

hive函数REGEXP_REPLACE用法

PySpark 的 Regexp_replace 解释

mysql regexp_replace 更新

Hive:regexp_replace 方括号

REGEXP_REPLACE 捕获组