あなたの質問に賞金をかけたにもかかわらず、解決策を見つけることができました - 私も、彼の「他の」ページを見つけるまで、Google グループのページと開発者のサイトでそれを見つけるのに苦労しました:
変数を展開 – このボックスがチェックされている場合、{...} は変数の出力に置き換えられます。現在、使用できる変数には次の 3 つのタイプがあります。
{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 文字、@、ランダムな 6 文字、.com の電子メール アドレスを挿入します。