Add option to find and replace strings in current value

This commit is contained in:
WarmUpTill
2023-02-22 15:03:16 +01:00
committed by WarmUpTill
parent 0bf70e443e
commit a82a2ccffe
4 changed files with 78 additions and 2 deletions

View File

@@ -118,4 +118,5 @@ QString formatJsonString(QString);
QString escapeForRegex(QString &s);
bool doubleEquals(double left, double right, double epsilon);
std::pair<int, int> getCursorPos();
void replaceAll(std::string &str, const std::string &from, const std::string &to);
void replaceAll(std::string &str, const std::string &from,
const std::string &to);