When creating a synthetic datasource, the user may add common field formats like:
- First Name
- LastName
- Email Address
- Domain
- Web Site
- City
- State
- Street Name
- Verb
- Noun
- Adjective
- Adverb
- Integer
- Decimal
- Letter
- Date
- SSN
- User-Defined
Suppose you want to create an Address in a field like: "1234 Mockingbird St.".
For this, you could use a User-Defined field Type, and compose a custom format for the data substitutions. The format can be defined by using:
- # - for digits
- T - for capital letters
- t - for lowercase letters
For example:
#### Ttttttttt S\t.
Notice that I used \t to generate a lowercase t every time in the abbreviation for Street "St.". So, the "####" generates 4 random digits. The "T" generates a single capital letter. The "tttttttt" generates 8 random lower case letters. Then , as mentioned, "S\t." generates "St." every time.
This will yield random data values similar to the following:
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article