January 22, 2011
Help
1. The StartsWith function (an XSLT function) is used to test whether a string starts with a given string: <<If(StartsWith(Surname,’van ‘)>><<Title>> <<Surname>> is probably of Dutch descent.<<End()>> <<If(StartsWith(Surname,’van ‘)>><<SetV(‘LastPart’,substring-after(Surname,’van ‘))>><<End()>> In previous versions this command was known as starts-with. Backward compatibility ensures that XpressDox will still recognize this command. 2. EndsWith tests the end of [...]
Tagged as:
contains,
EndsWith,
starts-with,
string-length,
substring,
substring-after,
substring-before
Read the full article →
October 1, 2009
Help
EndsWith tests the end of a string: <<If(EndsWith(Surname,’-Smith’)>> <<Surname>> is a double-barrelled name. <<SetV(‘FirstPart’,substring(Surname,1,string-length(Surname) – 6))>><<Comment(SetV(‘FirstPart’,string-before(‘-Smith’)) is equivalent)>> <<End()>> <<Name_of_Client>><<If(not(EndsWith(ToLower(Name_of_Client),’s')))>>’s<<Else()>>’<<End()>>
Tagged as:
contains,
EndsWith,
StartsWith
Read the full article →