I need to write a function which will randomize some words of my string. For example:
[Hello|Hi] guys. This is my [code|string]
The function should return:
Hello guys. This is my code
or
Hi guys. This is my string
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can get a random number generator like this:
var rand = new Random();As for parsing your string and getting all of the options, I suggest you look into
System.Text.RegularExpressionsThe other answers so far have just shown how you can get a random string if you already have one or two options for the different placeholders. Those are fine, but pretty boring and tedious to write out. It’s much better to write a parser that can take a random string “template” like the OP gave, and use that to generate the random strings.
Here is a quick one I put together:
As you can see, you use create a new RandomString object with the template. Then simply call the ToString() function as many time as you want, and each time you get a new random permutation of the options.
You can use any number of placeholders with any number of options (except 0).
The string template I used in this example was:
"[Hey|Hi] guys. [I|You|We|He|She] should [walk] to the [park|field|farm] sometime [today|tomorrow|next week]."
Running the code above, I got the following results:
Hey guys. I should walk to the park sometime today.
Hi guys. We should walk to the farm sometime today.
Hi guys. He should walk to the field sometime next week.
Hey guys. You should walk to the park sometime next week.
Hi guys. She should walk to the farm sometime next week.
Hey guys. We should walk to the field sometime tomorrow.
Hi guys. I should walk to the farm sometime today.
Hey guys. He should walk to the field sometime tomorrow.
Hi guys. You should walk to the park sometime next week.
Hi guys. I should walk to the farm sometime today.