Parse : Fix pascal case.
This commit is contained in:
parent
3b9216470d
commit
c8c45c7d97
|
@ -161,7 +161,7 @@ function parse_json() {
|
||||||
# Split string by separators.
|
# Split string by separators.
|
||||||
# Usage: _parse_split <STRING>
|
# Usage: _parse_split <STRING>
|
||||||
function _parse_split() {
|
function _parse_split() {
|
||||||
echo "${*}" | sed -e "s/[A-Z]/\n&/g" -e "s/[0-9]\+/\n&\n/g" -e "s/[${_PARSE_SPLIT_CHARS}]/&\n/g" | sed -e "/^$/d"
|
echo "${*}" | sed -e "s/[A-Z]\+/\n&/g" -e "s/[0-9]\+/\n&\n/g" -e "s/[${_PARSE_SPLIT_CHARS}]/&\n/g" | sed -e "/^$/d"
|
||||||
}
|
}
|
||||||
|
|
||||||
# Get name parts.
|
# Get name parts.
|
||||||
|
|
Reference in a new issue