FruityLoops FirstRepeat
现在我想在小写和大写字母之间添加一个空格.我不知道如何从JavaScript开始.有什么东西用substr或搜索?有人可以帮帮我吗?
var str = "FruityLoops"; str = str.replace(/([a-z])([A-Z])/g,'$1 $2');
示例:http://jsfiddle.net/3LYA8/