leetcode_1678. 设计 Goal 解析器
1678. 设计 Goal 解析器 - 力扣(LeetCode)
看起来简单的暴力操作就可以完成 但是代码看着有点长
那么我们可以用find和replace配合实现
class Solution {
public:
string interpret(string command) {
size_t pos = 0;
while ( (pos = command.find( "()")) != string::npos){ //替换()
command.replace( pos, 2, "o");
}
while ( (pos = command.find("(al)")) != string::npos ){ //替换(al)
command.replace( pos, 4, "al");
}
return command;
}
};
找到指定的字符串后 将其替换掉
其中 find是从第一个字符开始查找 如果找到最后 没有找到与其匹配的 就会返回string::npos