如何使用正则表达式将非字母数字字符替换为空格?

时间:2018-04-12 12:38:25

标签: javascript

我构建了一个Javascript函数,使第一个字母大写。我的问题是我有一些类似于" name_something"我想要的是"为某事命名"。

我这样做了:

function toCamelCase(text) {
  return text.replace(/\b(\w)/g, function (match, capture) {
    return capture.toUpperCase();
  }).split(/[^a-zA-Z]/);
}  

1 个答案:

答案 0 :(得分:4)

您可以使用GET https://www.googleapis.com/drive/v2/files?q='appfolder'+in+parents&access_token=<MyToken> 删除不是字母数字的字符。 https://www.googleapis.com/drive/v2/files?spaces=appDataFolder https://www.googleapis.com/drive/v2/files?q='appDataFolder'+in+parents https://www.googleapis.com/drive/v2/files?q='appfolder'+in+parents 代表来自[\W_]Wa-z

的字符的位置

A-Z

所以,为了使这些词与你可以做的替换一起大写,

0-9