starts-with( a, b )


Returns true if the text a starts with text b.

Description of Parameters

Parameter

Description

a

Text.

b

Prefix text.

Examples

Parameter a

Parameter b

Result

abcdef

abc

true

abcdef

ABC

false