Use regular expressions with Glib
- by Sébastien
Hello,
I would like to find all comment blocks(/*...*/) but the function g_regex_match_full always returns true.
Here is the code :
// Create the regex.
start_block_comment_regex = g_regex_new("/\*.*\*/", G_REGEX_OPTIMIZE, 0, ®ex_error);
//Search the regex;
if(TRUE == g_regex_match_full(start_block_comment_regex, current_line, -1, 0, 0, &match_info, ®ex_error))
{
}