Suppose I have this function:
std::string Func1(std::string myString) { //do some string processing std::string newString = Func2(myString) return
In VS2017, I was able to set the condition as:
strcmp(&newString[0], "my value") == 0