public class MatchInfo {
public weak Regex get_regex ( ) ;
public weak string get_string ( ) ;
public bool matches ( ) ;
public bool next ( )
throws RegexError;
public int get_match_count ( ) ;
public bool is_partial_match ( ) ;
public string expand_references ( string string_to_expand )
throws RegexError;
public string fetch ( int match_num ) ;
public bool fetch_pos ( int match_num,
int start_pos,
int end_pos ) ;
public string fetch_named ( string name ) ;
public bool fetch_named_pos ( string name,
int start_pos,
int end_pos ) ;
public string[] fetch_all ( ) ;
}

public weak Regex get_regex ( ) ;
public weak string get_string ( ) ;
public bool matches ( ) ;
public bool next ( )
throws RegexError;
public int get_match_count ( ) ;
public bool is_partial_match ( ) ;
public string expand_references ( string string_to_expand )
throws RegexError;
public string fetch ( int match_num ) ;
public bool fetch_pos ( int match_num,
int start_pos,
int end_pos ) ;
public string fetch_named ( string name ) ;
public bool fetch_named_pos ( string name,
int start_pos,
int end_pos ) ;
public string[] fetch_all ( ) ;
Created by Valadoc