When a word has an empty space (meaning there are two words), I want to put a forward slash in that index.
So: Hello There = _ _ _ _ _ / _ _ _ _ _
At the moment my game converts all characters in to an underscore so if the user enters two words, the other player will never get the word right.
So what I need to do is basically replace the EMPTY SPACE with a forward slash AND whilst I am processing the input from the user, check if the actual words at equal to _ _ _ _ _ / _ _ _ _ etc.
I.e. checking WITH a forward slash.
My Code: This is the code which generates the underscores:
for (int i = 0; i < word.Length; i++)
{
label += "_ ";
}
this is the code which processes letters which the user chose:
public string Process(string gameLetter, string currentWord)
{
underscoredWord = currentWord;
if (word.Contains(gameLetter))
{
correctLetters += gameLetter;
underscoredWord = Regex.Replace(word.Replace(" ", "/"), "[^" + correctLetters + "]", " _");
if (underscoredWord == word)
return underscoredWord;
}
else
tries++;
return underscoredWord; //return with no amendments
}
Any idea how I can modify them both to allow the game to work with two words? Any help is highly appreciated.
