| Top |  |  |  |  | 
| gboolean | go_search_match_string () | 
| GQuark | go_search_replace_error_quark () | 
| char * | go_search_replace_string () | 
| gboolean | go_search_replace_verify () | 
gboolean go_search_replace_verify (GOSearchReplace *sr,gboolean repl,GError **err);
typedef struct {
	char *search_text;
	char *replace_text;
	GORegexp *comp_search;
	gboolean is_regexp; /* Search text is a regular expression.  */
	gboolean ignore_case; /* Consider "a" and "A" the same.  */
	gboolean preserve_case; /* Like Emacs' case-replace.  */
	gboolean match_words; /* Like grep -w.  */
} GOSearchReplace;
| string to replace. | ||
| string to use as replacement/ | ||
| GORegexp * | ||
| search text is a regular expression. | ||
| consider "a" and "A" the same. | ||
| like Emacs' case-replace. | ||
| like grep -w. |