I have entered a sentence of type string.
std::string message;
std::getline(std::cin, message);
After entering a sentence I used a if statement to convert the string to "Morse code":
int length = message.length();
for(int i = 0; i < length;i++) //to loop in the message
{
if(message[i] == 'A')
cout << "-.";//and the rest for 'b','c','d'....'z'
}
How do i take the Morse code of the string entered and decode it. Eg: If the is ".-" in the Morse code then display 'A' and if "-..." in the message display 'B'.