Text Nodes π
Fixed
Write a string which can be used as an input to a text field.
Input: String Parameters: Text field Output: String
Name
Generates a random name.
Input: None Parameters: Choice: Full name, First name, Last name Output: String
Xeger (From Regex)
Generates a string which satisfies a given regular expression (regex).
Input: String Parameters: A regular expression which the generated string should satisfy. Output: A random string which satisfies the given regular expression.
Examples:
- random string of up to 5 lowercase letters:
- Input:
[a-z]{,5}
- Output: "agie"
- Input:
- A valid date between 2021 and 2024:
- Input:
(0[1-9]|[12]\d|3[01])/(0[1-9]|1[012])/202[1234]
- Output: "27/12/2023"
- Input: