View raw Markdown
type: fhirpath-functionfunction: lowercategory: String Manipulationsection: 5.6.8source: fhirpath/functions.json

FHIRPath Function: lower

Returns the input string with all characters converted to lower case.

If the input collection is empty, the result is empty.

If the input collection contains multiple items, the evaluation of the expression will end and signal an error to the calling environment.

'ABCDEFG'.lower() // 'abcdefg'
'aBcDEFG'.lower() // 'abcdefg'

Summary

Description

Returns the input string with all characters converted to lower case.

Arguments

Type Mapping

Example

'ABCDEFG'.lower() // 'abcdefg'
'aBcDEFG'.lower() // 'abcdefg'