| Your car failed to start, and you have to walk. |
| The horror, the horror. |
| smith |
| smith james brother,father |
| field1,field2,field3 field4,"field5,part2 and more",field6 |
| "You can force a complex list to behave simply, like this" |
| -- |
| This is the first segment |
| -- |
| And the second, which |
| can go on for several lines |
| -- |
| [simpleName] |
| example: |
| Windspeed was [windspeed] mph. |
| Mrs. [lastName] was at home when the storm hit. |
| We [narrativeParagraph]. |
| [?valueName] -- generates a local value for a defined value, but does not file that result in the value-object. It does, however, retain the value locally to this text object for immediate re-use. |
| [<x..y>] -- selects random value from the range given. The range can be numeric or alpha or both. The collating sequence is considered to be numeric, uppercase, lowercase. |
| "0..Z" -> 012...9AB...YZab...yz. |
| "0..F" -> 012...9ABCDEF |
| "A..z" -> ABC...YZab...yz |
| If the range is expressed wrong, it will return only the first character as the sole occupant of an array with one element. (An error message is written to the log file.) |
| "1..0" -- returns "1" only |
| "X..H" -- returns "X" only |
| The start or end numeric can be multi-digit, but in that case there can be no alphas. |
| "10..99" generates 10, 11, 12 ... 98, 99 |
| [(x,y,z)] -- selects a random occurrence from this list. |
| Mr [thisGuy=lastName] fell down and called out to Mrs [thisGuy]. |