@@ -392,16 +392,10 @@ FnDef QgsExpression::BuiltinFunctions[] =
392392 FnDef ( " toreal" , 1 , fcnToReal, " Conversions" ),
393393 FnDef ( " tostring" , 1 , fcnToString, " Conversions" ),
394394 // string manipulation
395- FnDef ( " lower" , 1 , fcnLower, " String" , " <b>Convert to lower case</b> "
396- " <br> Converts a string to lower case letters. "
397- " <br> <i>Usage:</i><br>lower('HELLO WORLD') will return 'hello world'" ),
398- FnDef ( " upper" , 1 , fcnUpper, " String" , " <b>Convert to upper case</b> "
399- " <br> Converts a string to upper case letters. "
400- " <br> <i>Usage:</i><br>upper('hello world') will return 'HELLO WORLD'" ),
401- FnDef ( " length" , 1 , fcnLength, " String" , " <b>Length of string</b> "
402- " <br> Returns the legnth of a string. "
403- " <br> <i>Usage:</i><br>length('hello') will return 5" ),
404- FnDef ( " replace" , 3 , fcnReplace, " String" , " <b>Replace a section of a string.</b> " ),
395+ FnDef ( " lower" , 1 , fcnLower, " String" ),
396+ FnDef ( " upper" , 1 , fcnUpper, " String" ),
397+ FnDef ( " length" , 1 , fcnLength, " String" ),
398+ FnDef ( " replace" , 3 , fcnReplace, " String" ),
405399 FnDef ( " regexp_replace" , 3 , fcnRegexpReplace, " String" ),
406400 FnDef ( " substr" , 3 , fcnSubstr, " String" ),
407401 // geometry accessors
0 commit comments