32 static bool find(
GUIStyledTextNode* textNode,
const string& findString,
bool matchCase,
bool wholeWord,
bool selection,
bool firstSearch,
int& index);
42 static int count(
GUIStyledTextNode* textNode,
const string& findString,
bool matchCase,
bool wholeWord,
bool selection);
55 static bool replace(
GUIStyledTextNode* textNode,
const string& findString,
const string& replaceString,
bool matchCase,
bool wholeWord,
bool selection,
int& index);
67 static bool replaceAll(
GUIStyledTextNode* textNode,
const string& findString,
const string& replaceString,
bool matchCase,
bool wholeWord,
bool selection);
static int count(GUIStyledTextNode *textNode, const string &findString, bool matchCase, bool wholeWord, bool selection)
Count string.
static bool replace(GUIStyledTextNode *textNode, const string &findString, const string &replaceString, bool matchCase, bool wholeWord, bool selection, int &index)
Replace string.
static bool find(GUIStyledTextNode *textNode, const string &findString, bool matchCase, bool wholeWord, bool selection, bool firstSearch, int &index)
Find string.
static bool replaceAll(GUIStyledTextNode *textNode, const string &findString, const string &replaceString, bool matchCase, bool wholeWord, bool selection)
Replace all string.