Topic | Name | Description | Alias | Comment |
---|---|---|---|---|
字符串函数 | match | match(str, pattern):检查字符串是否与正则表达式匹配,匹配返回true,不匹配返回false | ||
字符串函数 | match_prefix | match_prefix(, prefix): 判断字符串是否以指定的前缀开头,是为true,否为false | startswith | |
字符串函数 | match_substring | match_substring(str, substr): 检查字符串是否包含子字符串substr |