ReactNative下划线转驼峰
秃尾巴的猫 3/25/2020 ReactNative
/**
* 下划线转驼峰
* @param string
* @returns {*}
*/
1
2
3
4
5
2
3
4
5
function underLine2CamelCase(string){
return string.replace( /_([a-z])/g, function( all, letter ) {
return letter.toUpperCase();
});
}
1
2
3
4
5
2
3
4
5