PatternSpec
Object Hierarchy:
Description:
[ Compact ]
[ CCode ( copy_function = "g_pattern_spec_copy" , free_function = "g_pattern_spec_free" , type_id = "G_TYPE_PATTERN_SPEC" ) ]
public class PatternSpec
  [ CCode ( copy_function = "g_pattern_spec_copy" , free_function = "g_pattern_spec_free" , type_id = "G_TYPE_PATTERN_SPEC" ) ]
public class PatternSpec
Example: Match a string against a compiled pattern (full):
public static int main (string[] args) {
	PatternSpec spec = new PatternSpec ("dilbert-????/??/??.*");
	// Output: ``true``
	string str = "dilbert-1999/39/01.png";
	bool res = spec.match (str.length, str, str.reverse ());
	print ("%s\n", res.to_string ());
	// Output: ``true``
	str = "dilbert-1999/39/01.jpg";
	res = spec.match (str.length, str, null);
	print ("%s\n", res.to_string ());
	// Output: ``false``
	str = "dilbert-1999X/39/01.jpg";
	res = spec.match (str.length, str, null);
	print ("%s\n", res.to_string ());
	return 0;
}valac --pkg glib-2.0 GLib.PatternSpec.match.valaNamespace: GLib
  
  Package: glib-2.0