使用此函数检查字符串是否以特定片段开头。系统将返回 True 或 False 值作为输出。
此函数执行不区分大小写的检查。
语法
描述
示例
EndsWith(文本, 片段)
如果字符串以文本片段结尾,则返回 true
有关参数的更多信息,请参阅下表。
参数
类型
Text
必填
Fragment
EndsWith("Blueberry”, "blue")
EndsWith("Blueberry”, "Berry")
EndsWith("Blueberry”, "Raspberry")
EndsWith("My favorite jam is Apricot”, "Apricot")
EndsWith("example@uipath.com”, "@uipath.com")