String
String 动作可让你在任务中处理和转换文本格式的值。
Assign
将指定文本赋值给字符串变量。
- Enter the assigned string:准备赋值的字符串值或变量。
- Paste from clipboard:指定要赋值的字符串是否来自剪贴板。
- Select the destination string variable:将目标字符串赋给一个变量。
Concat
字符串拼接。
- Concat the source string:格式化拼接字符串,可输入文本和变量(例如:Hello,{{lastName}})。
- Select the destination string variable:将合并后的字符串赋给一个变量。
Contains
验证字符串是否包含另一个字符串。
- Source string:要验证的字符串。
- Find string:要搜索的子字符串。
- Assign the find result to variable:将搜索结果存赋给一个变量。
Get Login User Name
获取当前登录的用户名。
- Set user name to a variable:将获取到的用户名赋给一个变量。
Lowercase
将字符串转换为小写。
- Enter the source string:要转换的字符串。
- Select the destination string variable:将转换后的字符串存储到变量中。
Uppercase
将字符串转换为大写。
- Enter the source string: 要转换的字符串。
- Select the destination string variable: 将转换后的字符串存储到变量中。
Replace
用新字符串替换指定字符串中所有出现过的文本。
- Enter the source string:要解析的原始字符串。
- Enter the string to search for:要搜索的子字符串。
- Case insensitive:是否使用大小写不敏感匹配查找要替换的子字符串,默认值为 true。
- Enter the string to replace with:要替换的字符串。
- Select the destination string variable:将处理后的字符串存储到变量中。
Split
用分隔符将原字符串分割成字符串列表。
- Enter the source string:要分割的文本。
- Enter the delimiter:输入分隔符。
- Assign the output to a list variable:将分割后的文本存储到List变量中。