If I had a text file with the following:
Today (is|will be) a (great|good|nice) day.
Is there a simple way I can generate a random output like:
Today is a great day.
Today will be a nice day.
Using Perl or UNIX utils?
|
|
If I had a text file with the following:
Today (is|will be) a (great|good|nice) day.
Is there a simple way I can generate a random output like:
Today is a great day.
Today will be a nice day.
Using Perl or UNIX utils?
|
|||
|
|
|
|
Code:
Logic:
Getting random part is simple:
That's basically all. Instead of using function you could put the same logic in
|
||||||||||||
|
|
|
|
||
|
|
|
|
Smells like a recursive algorithm Edit: misread and thought you wanted all possibilities
A similar construct that produces a single random line:
Will fail however on nested constructs |
||||||
|
|
|
Closures are fun:
Output: C:\Temp> h Today will be a great day. The returns this month will be 1%. Must escape % signs here, but not here @. Today will be a great day. The returns this year will be 5%. Must escape % signs here, but not here @. Today will be a good day. The returns this quarter will be 10%. Must escape % signs here, but not here %. Today is a good day. The returns this month will be 1%. Must escape % signs here, but not here %. Today is a great day. The returns this quarter will be 5%. Must escape % signs here, but not here @. |
||||||||
|
|
|
Sounds like you may be looking for Regexp::Genex. From the module's synopsis:
|
|||
|