standardlib.ysl2
changeset 17 3bc118c7d324
parent 10 519fb60037ce
child 20 c936066cff62
equal deleted inserted replaced
16:da8160da8d3e 17:3bc118c7d324
    57 def "yml:mixedCase" {
    57 def "yml:mixedCase" {
    58     param "text", "''";
    58     param "text", "''";
    59     result "concat(yml:lcase(substring($text,1,1)),substring($text,2))";
    59     result "concat(yml:lcase(substring($text,1,1)),substring($text,2))";
    60 }
    60 }
    61 
    61 
       
    62 def "yml:capit" {
       
    63     param "text", "''";
       
    64     result "concat(yml:ucase(substring($text,1,1)),substring($text,2))";
       
    65 }
       
    66