The problem i am facing is i am unable to add in the symbol '"' into my dropped delimeters as when i put in the ' " ' symbol , it will seem like i closed it. Is there any way i can use to add in that particular symbol. Hope for some help here. Thank you
If I understood you correctly, an escape character (a back slash) will solve your problem. std::string str = "\"Hello World!\", said the robot."; is a valid string.