. API, , , () :
String.splitByCharacterType(text);
String.splitByCharacterType(text,CAMEL_CASE);
. Apache StringUtils, , .
, ++, :
char*[] splitByCharacterType(char* text, bool camelCase = 0) {
}
, , varargs. , javascript :
function splitByCharacterType (text) {
var camelCase = false;
if (arguments.length > 1 && arguments[1] == true) camelCase = true;
}
, null undefined. , javascript :
function splitByCharacterType (text, camelCase) {
if (camelCase != undefined) {
}
else {
}
}
. :
ls
, , :
ls -l
, .