| タイムスタンプ付きのランダムなユーザー名 | {{$internet.userName}}_{{$date.now}} | "Kattie_Rice64_2024-09-04T05:51:42.413Z" | {{$internet.userName}} を使用してランダムなユーザー名を生成し、{{$date.now}} を使用して現在時刻を取得し、テンプレートリテラルで連結します。 |
| 会社ドメイン付きのランダムなメールアドレス | `{{person.lastName}}@{{$company.name | lower}}.com` | "Kole.Haag@schmidt-schoen.com" |
| 番地と部屋番号付きのランダムな住所 | {{$location.buildingNumber}} {{$location.street}}, Apt. {{$number.int(min=1,max=1000)}}, {{$location.city}}, {{$location.state(abbreviated=true)}} {{$location.zipCode}} | "723 Klein Inlet, Apt. 814, North Myron, DE 67605" | 複数のメソッドを使用して、番地、通り名、部屋番号、市、州、郵便番号を含む詳細な住所を生成します。 |
| 業界と会社タイプを含むランダムな会社名 | {{$company.buzzAdjective}} {{$company.buzzNoun}} {{$company.name}} | "web-enabled architectures Fay Inc" | company メソッドを使用して、業界説明と会社タイプを含む会社名を生成します。 |
| 過去 1 年以内のランダムな日付 | {{$date.past(years=1)}} | "2023-10-24T09:25:24.109Z" | {{$date.past(years=1)}} メソッドを使用して、過去 1 年以内のランダムな日付を生成します。 |
| 通貨記号付きのランダムな価格 | {{$finance.currencySymbol}}{{$commerce.price}} | "KM12.89" | {{$finance.currencySymbol}} を使用してランダムな通貨記号を生成し、{{$commerce.price}} を使用してランダムな価格を生成して、それらを連結します。 |
| ランダムな商品説明 | {{$commerce.productAdjective}} {{$commerce.productMaterial}} {{$commerce.product}} - {{$lorem.sentences(min=2,max=4)}} | "Small Wooden Pizza - Thema copiose dens adinventitias a. Causa uxor terreo defleo vitiosus animi. Ademptio possimus decet considero absorbeo sursum rem circumvenio antiquus curatio. Adipisci addo tredecim carbo." | {{$commerce.productAdjective}} および {{$lorem.sentences(min=2,max=4)}} メソッドを使用して、商品の特徴と説明を含むテキストを生成します。 |
| ハッシュタグ付きのランダムな文 | #{{$lorem.slug(min=1,max=3)}} {{$lorem.sentence(min=1,max=3)}} | "#provident-quidem-tempore Vita comprehendo id." | {{$lorem.slug(min=1,max=3)}} を使用してランダムなハッシュタグを生成し、文の前に連結します。 |
| ポート番号付きのランダムな IP アドレス | {{$internet.ipv4}}::{{$number.int(min=1024,max=65535)}} | "246.222.133.63::56332" | {{$internet.ipv4}} を使用してランダムな IP アドレスを生成し、{{$number.int(min=1024,max=65535)}} を使用してポート番号を生成して、それらを連結します。 |
| クエリパラメータ付きのランダムな URL | {{$internet.url}}?{{$lorem.slug}}={{$lorem.word}} | "https://nippy-bob.name/?nemo-provident-clementia=blandior" | {{$internet.url}}、{{$lorem.slug}}、{{$lorem.word}} を使用して、クエリパラメータ付きのランダムな URL を生成します。 |
| ランダムなファイルパス | /path/to/{{$lorem.slug}}/{{$system.fileName}} | "/path/to/caritas-solio-vilicus/across.img" | {{$lorem.slug}}、{{$system.fileName}}、文字列連結を使用して、ランダムなファイルパスを生成します。 |
| ランダムなデータベーステーブル名 | `table_{{$string.alphanumeric(length=5) | lower}}` | "table_brxlr" |
| ランダムな HTML コードスニペット | <p>{{$lorem.sentence}} <a href="{{$internet.url}}">{{$lorem.word}}</a></p> | <p>Calamitas velociter una succurro depopulo. <a href="https://feline-king.name/">comminor</a></p> | {{$lorem.sentence}} と {{$internet.url}} を使用して、リンクを含むランダムな HTML コードスニペットを生成します。 |
| ランダムな HTTP リクエストヘッダー | { "User-Agent": {{$internet.userAgent}}, "Referer": {{$internet.url}} } | { "User-Agent": Opera/13.25 (Macintosh; Intel Mac OS X 10.7.9 U; HE Presto/2.9.171 Version/12.00), "Referer": https://queasy-dusk.info/ } | {{$internet.userAgent}} と {{$internet.url}} を使用して、User-Agent と Referer を含むランダムな HTTP リクエストヘッダーを生成します。 |