尽管对您的问题给予了赏金,但我还是设法找到了解决方案 - 我也很难在 Google Groups 页面和开发人员的网站中找到它,直到我找到他的“其他”页面,其中指出:
展开变量 – 如果选中此框,{...} 将替换为变量的输出。目前可以使用三种类型的变量:
{word1|word2|...} – This variable acts like a text spinner, randomly outputting one word from a list of words that you specify. Example: to output "house", "condo", "apartment", or "flat", you would enter {house|condo|apartment|flat}
{#} or {#number} – This variable outputs a random number. You can specify the number of digits after # ({#1} is equivalent to {#}). Example: to generate a random telephone number, you would enter ({#3}) {#3}-{#4}
{$} or {$number} – This variable outputs a random alphanumeric string. You can specify the number of characters after $ ({$1} is equivalent to {$}). Example: to generate a 16-character dummy text string, you would enter {$16}
因此,例如,在为您的元素自动填充框的值中,放置:
{$6}@{$6}.com
将插入一个由 6 个随机字母组成的电子邮件地址,然后是一个 @,然后是六个随机字母,最后是一个 .com。