我构建了一个Javascript函数,使第一个字母大写。我的问题是我有一些类似于" name_something"我想要的是"为某事命名"。
我这样做了:
function toCamelCase(text) {
return text.replace(/\b(\w)/g, function (match, capture) {
return capture.toUpperCase();
}).split(/[^a-zA-Z]/);
}
答案 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_]
,W
和a-z
A-Z
所以,为了使这些词与你可以做的替换一起大写,
0-9