123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953 |
- Oniguruma API Version 6.9.4 2019/09/30
- #include <oniguruma.h>
- # int onig_initialize(OnigEncoding use_encodings[], int num_encodings)
- Initialize library.
- You have to call it explicitly.
- * onig_init() is deprecated.
- arguments
- 1 use_encodings: array of encodings used in application.
- 2 num_encodings: number of encodings.
- # int onig_error_code_to_str(UChar* err_buf, int err_code, ...)
- Get error message string.
- If this function is used for onig_new(),
- don't call this after the pattern argument of onig_new() is freed.
- normal return: error message string length
- arguments
- 1 err_buf: error message string buffer.
- (required size: ONIG_MAX_ERROR_MESSAGE_LEN)
- 2 err_code: error code returned by other API functions.
- 3 err_info (optional): error info returned by onig_new().
- # void onig_set_warn_func(OnigWarnFunc func)
- Set warning function.
- WARNING:
- '[', '-', ']' in character class without escape.
- ']' in pattern without escape.
- arguments
- 1 func: function pointer. void (*func)(char* warning_message)
- # void onig_set_verb_warn_func(OnigWarnFunc func)
- Set verbose warning function.
- WARNING:
- redundant nested repeat operator.
- arguments
- 1 func: function pointer. void (*func)(char* warning_message)
- # int onig_new(regex_t** reg, const UChar* pattern, const UChar* pattern_end,
- OnigOptionType option, OnigEncoding enc, OnigSyntaxType* syntax,
- OnigErrorInfo* err_info)
- Create a regex object.
- normal return: ONIG_NORMAL
- arguments
- 1 reg: return regex object's address.
- 2 pattern: regex pattern string.
- 3 pattern_end: terminate address of pattern. (pattern + pattern length)
- 4 option: compile time options.
- ONIG_OPTION_NONE no option
- ONIG_OPTION_SINGLELINE '^' -> '\A', '$' -> '\Z'
- ONIG_OPTION_MULTILINE '.' match with newline
- ONIG_OPTION_IGNORECASE ambiguity match on
- ONIG_OPTION_EXTEND extended pattern form
- ONIG_OPTION_FIND_LONGEST find longest match
- ONIG_OPTION_FIND_NOT_EMPTY ignore empty match
- ONIG_OPTION_NEGATE_SINGLELINE
- clear ONIG_OPTION_SINGLELINE which is enabled on
- ONIG_SYNTAX_POSIX_BASIC, ONIG_SYNTAX_POSIX_EXTENDED,
- ONIG_SYNTAX_PERL, ONIG_SYNTAX_PERL_NG, ONIG_SYNTAX_JAVA
- ONIG_OPTION_DONT_CAPTURE_GROUP only named group captured.
- ONIG_OPTION_CAPTURE_GROUP named and no-named group captured.
- ONIG_OPTION_WORD_IS_ASCII ASCII only word (\w, \p{Word}, [[:word:]])
- ASCII only word bound (\b)
- ONIG_OPTION_DIGIT_IS_ASCII ASCII only digit (\d, \p{Digit}, [[:digit:]])
- ONIG_OPTION_SPACE_IS_ASCII ASCII only space (\s, \p{Space}, [[:space:]])
- ONIG_OPTION_POSIX_IS_ASCII ASCII only POSIX properties
- (includes word, digit, space)
- (alnum, alpha, blank, cntrl, digit, graph,
- lower, print, punct, space, upper, xdigit,
- word)
- ONIG_OPTION_TEXT_SEGMENT_EXTENDED_GRAPHEME_CLUSTER Extended Grapheme Cluster mode
- ONIG_OPTION_TEXT_SEGMENT_WORD Word mode
- 5 enc: character encoding.
- ONIG_ENCODING_ASCII ASCII
- ONIG_ENCODING_ISO_8859_1 ISO 8859-1
- ONIG_ENCODING_ISO_8859_2 ISO 8859-2
- ONIG_ENCODING_ISO_8859_3 ISO 8859-3
- ONIG_ENCODING_ISO_8859_4 ISO 8859-4
- ONIG_ENCODING_ISO_8859_5 ISO 8859-5
- ONIG_ENCODING_ISO_8859_6 ISO 8859-6
- ONIG_ENCODING_ISO_8859_7 ISO 8859-7
- ONIG_ENCODING_ISO_8859_8 ISO 8859-8
- ONIG_ENCODING_ISO_8859_9 ISO 8859-9
- ONIG_ENCODING_ISO_8859_10 ISO 8859-10
- ONIG_ENCODING_ISO_8859_11 ISO 8859-11
- ONIG_ENCODING_ISO_8859_13 ISO 8859-13
- ONIG_ENCODING_ISO_8859_14 ISO 8859-14
- ONIG_ENCODING_ISO_8859_15 ISO 8859-15
- ONIG_ENCODING_ISO_8859_16 ISO 8859-16
- ONIG_ENCODING_UTF8 UTF-8
- ONIG_ENCODING_UTF16_BE UTF-16BE
- ONIG_ENCODING_UTF16_LE UTF-16LE
- ONIG_ENCODING_UTF32_BE UTF-32BE
- ONIG_ENCODING_UTF32_LE UTF-32LE
- ONIG_ENCODING_EUC_JP EUC-JP
- ONIG_ENCODING_EUC_TW EUC-TW
- ONIG_ENCODING_EUC_KR EUC-KR
- ONIG_ENCODING_EUC_CN EUC-CN
- ONIG_ENCODING_SJIS Shift_JIS
- ONIG_ENCODING_KOI8_R KOI8-R
- ONIG_ENCODING_CP1251 CP1251
- ONIG_ENCODING_BIG5 Big5
- ONIG_ENCODING_GB18030 GB18030
- or any OnigEncodingType data address defined by user.
- 6 syntax: address of pattern syntax definition.
- ONIG_SYNTAX_ASIS plain text
- ONIG_SYNTAX_POSIX_BASIC POSIX Basic RE
- ONIG_SYNTAX_POSIX_EXTENDED POSIX Extended RE
- ONIG_SYNTAX_EMACS Emacs
- ONIG_SYNTAX_GREP grep
- ONIG_SYNTAX_GNU_REGEX GNU regex
- ONIG_SYNTAX_JAVA Java (Sun java.util.regex)
- ONIG_SYNTAX_PERL Perl
- ONIG_SYNTAX_PERL_NG Perl + named group
- ONIG_SYNTAX_RUBY Ruby
- ONIG_SYNTAX_ONIGURUMA Oniguruma
- ONIG_SYNTAX_DEFAULT default (== ONIG_SYNTAX_ONIGURUMA)
- onig_set_default_syntax()
- or any OnigSyntaxType data address defined by user.
- 7 err_info: address for return optional error info.
- Use this value as 3rd argument of onig_error_code_to_str().
- # int onig_new_without_alloc(regex_t* reg, const UChar* pattern,
- const UChar* pattern_end,
- OnigOptionType option, OnigEncoding enc, OnigSyntaxType* syntax,
- OnigErrorInfo* err_info)
- Create a regex object.
- reg object area is not allocated in this function.
- normal return: ONIG_NORMAL
- # int onig_new_deluxe(regex_t** reg, const UChar* pattern, const UChar* pattern_end,
- OnigCompileInfo* ci, OnigErrorInfo* einfo)
- This function is deprecated, and it does not allow the case where
- the encoding of pattern and target is different.
- Create a regex object.
- This function is deluxe version of onig_new().
- normal return: ONIG_NORMAL
- arguments
- 1 reg: return address of regex object.
- 2 pattern: regex pattern string.
- 3 pattern_end: terminate address of pattern. (pattern + pattern length)
- 4 ci: compile time info.
- ci->num_of_elements: number of elements in ci. (current version: 5)
- ci->pattern_enc: pattern string character encoding.
- ci->target_enc: target string character encoding.
- ci->syntax: address of pattern syntax definition.
- ci->option: compile time option.
- ci->case_fold_flag: character matching case fold bit flag for
- ONIG_OPTION_IGNORECASE mode.
- ONIGENC_CASE_FOLD_MIN: minimum
- ONIGENC_CASE_FOLD_DEFAULT: minimum
- onig_set_default_case_fold_flag()
- 5 err_info: address for return optional error info.
- Use this value as 3rd argument of onig_error_code_to_str().
- Different character encoding combination is allowed for
- the following cases only.
- pattern_enc: ASCII, ISO_8859_1
- target_enc: UTF16_BE, UTF16_LE, UTF32_BE, UTF32_LE
- pattern_enc: UTF16_BE/LE
- target_enc: UTF16_LE/BE
- pattern_enc: UTF32_BE/LE
- target_enc: UTF32_LE/BE
- # void onig_free(regex_t* reg)
- Free memory used by regex object.
- arguments
- 1 reg: regex object.
- # void onig_free_body(regex_t* reg)
- Free memory used by regex object. (Except reg oneself.)
- arguments
- 1 reg: regex object.
- # OnigMatchParam* onig_new_match_param()
- Allocate a OnigMatchParam object and initialize the contents by
- onig_initialize_match_param().
- # void onig_free_match_param(OnigMatchParam* mp)
- Free memory used by a OnigMatchParam object.
- arguments
- 1 mp: OnigMatchParam object
- # void onig_initialize_match_param(OnigMatchParam* mp)
- Set match-param fields to default values.
- Match-param is used in onig_match_with_param() and onig_search_with_param().
- arguments
- 1 mp: match-param pointer
- # int onig_set_match_stack_limit_size_of_match_param(OnigMatchParam* mp, unsigned int limit)
- Set a maximum number of match-stack depth.
- 0 means unlimited.
- arguments
- 1 mp: match-param pointer
- 2 limit: number of limit
- normal return: ONIG_NORMAL
- # int onig_set_retry_limit_in_match_of_match_param(OnigMatchParam* mp, unsigned long limit)
- Set a retry limit count of a match process.
- arguments
- 1 mp: match-param pointer
- 2 limit: number of limit
- normal return: ONIG_NORMAL
- # int onig_set_progress_callout_of_match_param(OnigMatchParam* mp, OnigCalloutFunc f)
- Set a function for callouts of contents in progress.
- If 0 (NULL) is set, never called in progress.
- arguments
- 1 mp: match-param pointer
- 2 f: function
- normal return: ONIG_NORMAL
- # int onig_set_retraction_callout_of_match_param(OnigMatchParam* mp, OnigCalloutFunc f)
- Set a function for callouts of contents in retraction (backtrack).
- If 0 (NULL) is set, never called in retraction.
- arguments
- 1 mp: match-param pointer
- 2 f: function
- normal return: ONIG_NORMAL
- # int onig_search(regex_t* reg, const UChar* str, const UChar* end, const UChar* start,
- const UChar* range, OnigRegion* region, OnigOptionType option)
- Search string and return search result and matching region.
- Do not pass invalid byte string in the regex character encoding.
- normal return: match position offset (i.e. p - str >= 0)
- not found: ONIG_MISMATCH (< 0)
- error: error code (< 0)
- arguments
- 1 reg: regex object
- 2 str: target string
- 3 end: terminate address of target string
- 4 start: search start address of target string
- 5 range: search terminate address of target string
- in forward search (start <= searched string < range)
- in backward search (range <= searched string <= start)
- 6 region: address for return group match range info (NULL is allowed)
- 7 option: search time option
- ONIG_OPTION_NOTBOL string head(str) isn't considered as begin of line
- ONIG_OPTION_NOTEOL string end (end) isn't considered as end of line
- ONIG_OPTION_POSIX_REGION region argument is regmatch_t[] of POSIX API.
- # int onig_search_with_param(regex_t* reg, const UChar* str, const UChar* end,
- const UChar* start, const UChar* range, OnigRegion* region,
- OnigOptionType option, OnigMatchParam* mp)
- Search string and return search result and matching region.
- Do not pass invalid byte string in the regex character encoding.
- arguments
- 1-7: same as onig_search()
- 8 mp: match parameter values (match_stack_limit, retry_limit_in_match)
- # int onig_match(regex_t* reg, const UChar* str, const UChar* end, const UChar* at,
- OnigRegion* region, OnigOptionType option)
- Match string and return result and matching region.
- Do not pass invalid byte string in the regex character encoding.
- normal return: match length (>= 0)
- not match: ONIG_MISMATCH (< 0)
- error: error code (< 0)
- arguments
- 1 reg: regex object
- 2 str: target string
- 3 end: terminate address of target string
- 4 at: match address of target string
- 5 region: address for return group match range info (NULL is allowed)
- 6 option: search time option
- ONIG_OPTION_NOTBOL string head(str) isn't considered as begin of line
- ONIG_OPTION_NOTEOL string end (end) isn't considered as end of line
- ONIG_OPTION_POSIX_REGION region argument is regmatch_t[] type of POSIX API.
- # int onig_match_with_param(regex_t* reg, const UChar* str, const UChar* end,
- const UChar* at, OnigRegion* region,
- OnigOptionType option, OnigMatchParam* mp)
- Match string and return result and matching region.
- Do not pass invalid byte string in the regex character encoding.
- arguments
- 1-6: same as onig_match()
- 7 mp: match parameter values (match_stack_limit, retry_limit_in_match)
- # int onig_scan(regex_t* reg, const UChar* str, const UChar* end,
- OnigRegion* region, OnigOptionType option,
- int (*scan_callback)(int, int, OnigRegion*, void*),
- void* callback_arg)
- Scan string and callback with matching region.
- Do not pass invalid byte string in the regex character encoding.
- normal return: number of matching times
- error: error code
- interruption: return value of callback function (!= 0)
- arguments
- 1 reg: regex object
- 2 str: target string
- 3 end: terminate address of target string
- 4 region: address for return group match range info (NULL is allowed)
- 5 option: search time option
- 6 scan_callback: callback function (defined by user)
- 7 callback_arg: optional argument passed to callback
- # int onig_regset_new(OnigRegSet** rset, int n, regex_t* regs[])
- Create a regset object.
- All regex objects must have the same character encoding.
- All regex objects are prohibited from having the ONIG_OPTION_FIND_LONGEST option.
- arguments
- 1 rset: return address of regset object
- 2 n: number of regex in regs
- 3 regs: array of regex
- normal return: ONIG_NORMAL
- # int onig_regset_add(OnigRegSet* set, regex_t* reg)
- Add a regex into regset.
- The regex object must have the same character encoding with the regset.
- The regex object is prohibited from having the ONIG_OPTION_FIND_LONGEST option.
- arguments
- 1 set: regset object
- 2 reg: regex object
- normal return: ONIG_NORMAL
- # int onig_regset_replace(OnigRegSet* set, int at, regex_t* reg)
- Replace a regex in regset with another one.
- If the reg argument value is NULL, then remove at-th regex. (and indexes of other regexes are changed)
- arguments
- 1 set: regset object
- 2 at: index of regex (zero origin)
- 3 reg: regex object
- normal return: ONIG_NORMAL
- # void onig_regset_free(OnigRegSet* set)
- Free memory used by regset object and regex objects in the regset.
- If the same regex object is registered twice, the situation becomes destructive.
- arguments
- 1 set: regset object
- # int onig_regset_number_of_regex(OnigRegSet* set)
- Returns number of regex objects in the regset.
- arguments
- 1 set: regset object
- # regex_t* onig_regset_get_regex(OnigRegSet* set, int at)
- Returns the regex object corresponding to the at-th regex.
- arguments
- 1 set: regset object
- 2 at: index of regex array (zero origin)
- # OnigRegion* onig_regset_get_region(OnigRegSet* set, int at)
- Returns the region object corresponding to the at-th regex.
- arguments
- 1 set: regset object
- 2 at: index of regex array (zero origin)
- # int onig_regset_search(OnigRegSet* set, const OnigUChar* str, const OnigUChar* end, const OnigUChar* start, const OnigUChar* range, OnigRegSetLead lead, OnigOptionType option, int* rmatch_pos)
- Perform a search with regset.
- return value:
- normal return: index of match regex (zero origin)
- not found: ONIG_MISMATCH (< 0)
- error: error code (< 0)
- arguments
- 1 set: regset object
- 2 str: target string
- 3 end: terminate address of target string
- 4 start: search start address of target string
- 5 range: search terminate address of target string
- 6 lead: outer loop element
- ONIG_REGSET_POSITION_LEAD (returns most left position)
- ONIG_REGSET_REGEX_LEAD (returns most left position)
- ONIG_REGSET_PRIORITY_TO_REGEX_ORDER (returns first match regex)
- 7 option: search time option
- ONIG_OPTION_NOTBOL string head(str) isn't considered as begin of line
- ONIG_OPTION_NOTEOL string end (end) isn't considered as end of line
- 8 rmatch_pos: return address of match position (match_address - str)
- * ONIG_REGSET_POSITION_LEAD and ONIG_REGSET_REGEX_LEAD return the same result.
- These differences only appear in search time.
- In most cases, ONIG_REGSET_POSITION_LEAD seems to be faster.
- # int onig_regset_search_with_param(OnigRegSet* set, const OnigUChar* str, const OnigUChar* end, const OnigUChar* start, const OnigUChar* range, OnigRegSetLead lead, OnigOptionType option, OnigMatchParam* mps[], int* rmatch_pos)
- Perform a search with regset and match-params.
- return value:
- normal return: index of match regex (zero origin)
- not found: ONIG_MISMATCH (< 0)
- error: error code (< 0)
- arguments
- 1 set: regset object
- 2 str: target string
- 3 end: terminate address of target string
- 4 start: search start address of target string
- 5 range: search terminate address of target string
- 6 lead: outer loop element
- ONIG_REGSET_POSITION_LEAD (returns most left position)
- ONIG_REGSET_REGEX_LEAD (returns most left position)
- ONIG_REGSET_PRIORITY_TO_REGEX_ORDER (returns first match regex)
- 7 option: search time option
- ONIG_OPTION_NOTBOL string head(str) isn't considered as begin of line
- ONIG_OPTION_NOTEOL string end (end) isn't considered as end of line
- 8 mps: array of match-params
- 9 rmatch_pos: return address of match position (match_address - str)
- # OnigRegion* onig_region_new(void)
- Create a region.
- # void onig_region_free(OnigRegion* region, int free_self)
- Free memory used by region.
- arguments
- 1 region: target region
- 2 free_self: [1: free all, 0: free memory used in region but not self]
- # void onig_region_copy(OnigRegion* to, OnigRegion* from)
- Copy contents of region.
- arguments
- 1 to: target region
- 2 from: source region
- # void onig_region_clear(OnigRegion* region)
- Clear contents of region.
- arguments
- 1 region: target region
- # int onig_region_resize(OnigRegion* region, int n)
- Resize group range area of region.
- normal return: ONIG_NORMAL
- arguments
- 1 region: target region
- 2 n: new size
- # int onig_name_to_group_numbers(regex_t* reg, const UChar* name, const UChar* name_end,
- int** num_list)
- Return the group number list of the name.
- Named subexp is defined by (?<name>....).
- normal return: number of groups for the name.
- (ex. /(?<x>..)(?<x>..)/ ==> 2)
- name not found: -1
- arguments
- 1 reg: regex object.
- 2 name: group name.
- 3 name_end: terminate address of group name.
- 4 num_list: return list of group number.
- # int onig_name_to_backref_number(regex_t* reg, const UChar* name, const UChar* name_end,
- OnigRegion *region)
- Return the group number corresponding to the named backref (\k<name>).
- If two or more regions for the groups of the name are effective,
- the greatest number in it is obtained.
- normal return: group number.
- arguments
- 1 reg: regex object.
- 2 name: group name.
- 3 name_end: terminate address of group name.
- 4 region: search/match result region.
- # int onig_foreach_name(regex_t* reg,
- int (*func)(const UChar*, const UChar*, int,int*,regex_t*,void*),
- void* arg)
- Iterate function call for all names.
- normal return: 0
- error: func's return value.
- arguments
- 1 reg: regex object.
- 2 func: callback function.
- func(name, name_end, <number of groups>, <group number's list>,
- reg, arg);
- if func does not return 0, then iteration is stopped.
- 3 arg: argument for func.
- # int onig_number_of_names(regex_t* reg)
- Return the number of names defined in the pattern.
- Multiple definitions of one name is counted as one.
- arguments
- 1 reg: regex object.
- # OnigEncoding onig_get_encoding(regex_t* reg)
- # OnigOptionType onig_get_options(regex_t* reg)
- # OnigCaseFoldType onig_get_case_fold_flag(regex_t* reg)
- # OnigSyntaxType* onig_get_syntax(regex_t* reg)
- Return a value of the regex object.
- arguments
- 1 reg: regex object.
- # int onig_number_of_captures(regex_t* reg)
- Return the number of capture group in the pattern.
- arguments
- 1 reg: regex object.
- # int onig_number_of_capture_histories(regex_t* reg)
- Return the number of capture history defined in the pattern.
- You can't use capture history if ONIG_SYN_OP2_ATMARK_CAPTURE_HISTORY
- is disabled in the pattern syntax.(disabled in the default syntax)
- arguments
- 1 reg: regex object.
- # OnigCaptureTreeNode* onig_get_capture_tree(OnigRegion* region)
- Return the root node of capture history data tree.
- This value is undefined if matching has faild.
- arguments
- 1 region: matching result.
- # int onig_capture_tree_traverse(OnigRegion* region, int at,
- int(*func)(int,int,int,int,int,void*), void* arg)
- Traverse and callback in capture history data tree.
- normal return: 0
- error: callback func's return value.
- arguments
- 1 region: match region data.
- 2 at: callback position.
- ONIG_TRAVERSE_CALLBACK_AT_FIRST: callback first, then traverse children.
- ONIG_TRAVERSE_CALLBACK_AT_LAST: traverse children first, then callback.
- ONIG_TRAVERSE_CALLBACK_AT_BOTH: callback first, then traverse children,
- and at last callback again.
- 3 func: callback function.
- if func does not return 0, then traverse is stopped.
- int func(int group, int beg, int end, int level, int at,
- void* arg)
- group: group number
- beg: capture start position
- end: capture end position
- level: nest level (from 0)
- at: callback position
- ONIG_TRAVERSE_CALLBACK_AT_FIRST
- ONIG_TRAVERSE_CALLBACK_AT_LAST
- arg: optional callback argument
- 4 arg; optional callback argument.
- # int onig_noname_group_capture_is_active(regex_t* reg)
- Return noname group capture activity.
- active: 1
- inactive: 0
- arguments
- 1 reg: regex object.
- if option ONIG_OPTION_DONT_CAPTURE_GROUP == ON
- --> inactive
- if the regex pattern have named group
- and syntax ONIG_SYN_CAPTURE_ONLY_NAMED_GROUP == ON
- and option ONIG_OPTION_CAPTURE_GROUP == OFF
- --> inactive
- else --> active
- # UChar* onigenc_get_prev_char_head(OnigEncoding enc, const UChar* start, const UChar* s)
- Return previous character head address.
- arguments
- 1 enc: character encoding
- 2 start: string address
- 3 s: target address of string
- # UChar* onigenc_get_left_adjust_char_head(OnigEncoding enc,
- const UChar* start, const UChar* s)
- Return left-adjusted head address of a character.
- arguments
- 1 enc: character encoding
- 2 start: string address
- 3 s: target address of string
- # UChar* onigenc_get_right_adjust_char_head(OnigEncoding enc,
- const UChar* start, const UChar* s)
- Return right-adjusted head address of a character.
- arguments
- 1 enc: character encoding
- 2 start: string address
- 3 s: target address of string
- # int onigenc_strlen(OnigEncoding enc, const UChar* s, const UChar* end)
- Return number of characters in the string.
- # int onigenc_strlen_null(OnigEncoding enc, const UChar* s)
- Return number of characters in the string.
- Do not pass invalid byte string in the character encoding.
- # int onigenc_str_bytelen_null(OnigEncoding enc, const UChar* s)
- Return number of bytes in the string.
- Do not pass invalid byte string in the character encoding.
- # int onig_set_default_syntax(OnigSyntaxType* syntax)
- Set default syntax.
- arguments
- 1 syntax: address of pattern syntax definition.
- # void onig_copy_syntax(OnigSyntaxType* to, OnigSyntaxType* from)
- Copy syntax.
- arguments
- 1 to: destination address.
- 2 from: source address.
- # unsigned int onig_get_syntax_op(OnigSyntaxType* syntax)
- # unsigned int onig_get_syntax_op2(OnigSyntaxType* syntax)
- # unsigned int onig_get_syntax_behavior(OnigSyntaxType* syntax)
- # OnigOptionType onig_get_syntax_options(OnigSyntaxType* syntax)
- # void onig_set_syntax_op(OnigSyntaxType* syntax, unsigned int op)
- # void onig_set_syntax_op2(OnigSyntaxType* syntax, unsigned int op2)
- # void onig_set_syntax_behavior(OnigSyntaxType* syntax, unsigned int behavior)
- # void onig_set_syntax_options(OnigSyntaxType* syntax, OnigOptionType options)
- Get/Set elements of the syntax.
- arguments
- 1 syntax: syntax
- 2 op, op2, behavior, options: value of element.
- # void onig_copy_encoding(OnigEncoding to, OnigEncoding from)
- Copy encoding.
- arguments
- 1 to: destination address.
- 2 from: source address.
- # int onig_set_meta_char(OnigSyntaxType* syntax, unsigned int what,
- OnigCodePoint code)
- Set a variable meta character to the code point value.
- Except for an escape character, this meta characters specification
- is not work, if ONIG_SYN_OP_VARIABLE_META_CHARACTERS is not effective
- by the syntax. (Build-in syntaxes are not effective.)
- normal return: ONIG_NORMAL
- arguments
- 1 syntax: target syntax
- 2 what: specifies which meta character it is.
- ONIG_META_CHAR_ESCAPE
- ONIG_META_CHAR_ANYCHAR
- ONIG_META_CHAR_ANYTIME
- ONIG_META_CHAR_ZERO_OR_ONE_TIME
- ONIG_META_CHAR_ONE_OR_MORE_TIME
- ONIG_META_CHAR_ANYCHAR_ANYTIME
- 3 code: meta character or ONIG_INEFFECTIVE_META_CHAR.
- # OnigCaseFoldType onig_get_default_case_fold_flag()
- Get default case fold flag.
- # int onig_set_default_case_fold_flag(OnigCaseFoldType case_fold_flag)
- Set default case fold flag.
- 1 case_fold_flag: case fold flag
- # unsigned int onig_get_match_stack_limit_size(void)
- Return the maximum number of stack size.
- (default: 0 == unlimited)
- # int onig_set_match_stack_limit_size(unsigned int size)
- Set the maximum number of stack size.
- (size = 0: unlimited)
- normal return: ONIG_NORMAL
- # unsigned long onig_get_retry_limit_in_match(void)
- Return the limit of retry counts in matching process.
- (default: 10000000)
- normal return: limit value
- # int onig_set_retry_limit_in_match(unsigned long n)
- Set the limit of retry counts in matching process.
- normal return: ONIG_NORMAL
- # OnigCalloutFunc onig_get_progress_callout(void)
- Get a function for callouts of contents in progress.
- # int onig_set_progress_callout(OnigCalloutFunc f)
- Set a function for callouts of contents in progress.
- If 0 (NULL) is set, never called in progress.
- normal return: ONIG_NORMAL
- # OnigCalloutFunc onig_get_retraction_callout(void)
- Get a function for callouts of contents in retraction (backtrack).
- # int onig_set_retraction_callout(OnigCalloutFunc f)
- Set a function for callouts of contents in retraction (backtrack).
- If 0 (NULL) is set, never called in retraction.
- normal return: ONIG_NORMAL
- # int onig_unicode_define_user_property(const char* name, OnigCodePoint* ranges))
- Define new Unicode property.
- (This function is not thread safe.)
- arguments
- 1 name: property name (ASCII only. character ' ', '-', '_' are ignored.)
- 2 ranges: property code point ranges
- (first element is number of ranges.)
- [num-of-ranges, 1st-range-start, 1st-range-end, 2nd-range-start... ]
- * Don't destroy the ranges after having called this function.
- normal return: ONIG_NORMAL
- # unsigned int onig_get_parse_depth_limit(void)
- Return the maximum depth of parser recursion.
- (default: DEFAULT_PARSE_DEPTH_LIMIT defined in regint.h. Currently 4096.)
- # int onig_set_parse_depth_limit(unsigned int depth)
- Set the maximum depth of parser recursion.
- (depth = 0: Set to the default value defined in regint.h.)
- normal return: ONIG_NORMAL
- # int onig_end(void)
- The use of this library is finished.
- normal return: ONIG_NORMAL
- It is not allowed to use regex objects which created
- before onig_end() call.
- # const char* onig_version(void)
- Return version string. (ex. "5.0.3")
- // END
|