Commit 4fc8aabf by 据说甜蜜呢

添加方法

parent 709be44e
......@@ -24,4 +24,11 @@ function DynamicVariableValueOf()
declare suffix=$2
eval "output=\$$prefix$suffix"
eval $3=${output}
}
function FirstCharUpperCase()
{
declare input=$1
declare output=($(echo ${input} | sed -e "s/\b\(.\)/\u\1/g"))
eval $2=${output}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment