RE 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449
  1. Oniguruma Regular Expressions Version 5.9.1 2007/09/05
  2. syntax: ONIG_SYNTAX_RUBY (default)
  3. 1. Syntax elements
  4. \ escape (enable or disable meta character meaning)
  5. | alternation
  6. (...) group
  7. [...] character class
  8. 2. Characters
  9. \t horizontal tab (0x09)
  10. \v vertical tab (0x0B)
  11. \n newline (0x0A)
  12. \r return (0x0D)
  13. \b back space (0x08)
  14. \f form feed (0x0C)
  15. \a bell (0x07)
  16. \e escape (0x1B)
  17. \nnn octal char (encoded byte value)
  18. \xHH hexadecimal char (encoded byte value)
  19. \x{7HHHHHHH} wide hexadecimal char (character code point value)
  20. \cx control char (character code point value)
  21. \C-x control char (character code point value)
  22. \M-x meta (x|0x80) (character code point value)
  23. \M-\C-x meta control char (character code point value)
  24. (* \b is effective in character class [...] only)
  25. 3. Character types
  26. . any character (except newline)
  27. \w word character
  28. Not Unicode:
  29. alphanumeric, "_" and multibyte char.
  30. Unicode:
  31. General_Category -- (Letter|Mark|Number|Connector_Punctuation)
  32. \W non word char
  33. \s whitespace char
  34. Not Unicode:
  35. \t, \n, \v, \f, \r, \x20
  36. Unicode:
  37. 0009, 000A, 000B, 000C, 000D, 0085(NEL),
  38. General_Category -- Line_Separator
  39. -- Paragraph_Separator
  40. -- Space_Separator
  41. \S non whitespace char
  42. \d decimal digit char
  43. Unicode: General_Category -- Decimal_Number
  44. \D non decimal digit char
  45. \h hexadecimal digit char [0-9a-fA-F]
  46. \H non hexadecimal digit char
  47. Character Property
  48. * \p{property-name}
  49. * \p{^property-name} (negative)
  50. * \P{property-name} (negative)
  51. property-name:
  52. + works on all encodings
  53. Alnum, Alpha, Blank, Cntrl, Digit, Graph, Lower,
  54. Print, Punct, Space, Upper, XDigit, Word, ASCII,
  55. + works on EUC_JP, Shift_JIS
  56. Hiragana, Katakana
  57. + works on UTF8, UTF16, UTF32
  58. Any, Assigned, C, Cc, Cf, Cn, Co, Cs, L, Ll, Lm, Lo, Lt, Lu,
  59. M, Mc, Me, Mn, N, Nd, Nl, No, P, Pc, Pd, Pe, Pf, Pi, Po, Ps,
  60. S, Sc, Sk, Sm, So, Z, Zl, Zp, Zs,
  61. Arabic, Armenian, Bengali, Bopomofo, Braille, Buginese,
  62. Buhid, Canadian_Aboriginal, Cherokee, Common, Coptic,
  63. Cypriot, Cyrillic, Deseret, Devanagari, Ethiopic, Georgian,
  64. Glagolitic, Gothic, Greek, Gujarati, Gurmukhi, Han, Hangul,
  65. Hanunoo, Hebrew, Hiragana, Inherited, Kannada, Katakana,
  66. Kharoshthi, Khmer, Lao, Latin, Limbu, Linear_B, Malayalam,
  67. Mongolian, Myanmar, New_Tai_Lue, Ogham, Old_Italic, Old_Persian,
  68. Oriya, Osmanya, Runic, Shavian, Sinhala, Syloti_Nagri, Syriac,
  69. Tagalog, Tagbanwa, Tai_Le, Tamil, Telugu, Thaana, Thai, Tibetan,
  70. Tifinagh, Ugaritic, Yi
  71. 4. Quantifier
  72. greedy
  73. ? 1 or 0 times
  74. * 0 or more times
  75. + 1 or more times
  76. {n,m} at least n but not more than m times
  77. {n,} at least n times
  78. {,n} at least 0 but not more than n times ({0,n})
  79. {n} n times
  80. reluctant
  81. ?? 1 or 0 times
  82. *? 0 or more times
  83. +? 1 or more times
  84. {n,m}? at least n but not more than m times
  85. {n,}? at least n times
  86. {,n}? at least 0 but not more than n times (== {0,n}?)
  87. possessive (greedy and does not backtrack after repeated)
  88. ?+ 1 or 0 times
  89. *+ 0 or more times
  90. ++ 1 or more times
  91. ({n,m}+, {n,}+, {n}+ are possessive op. in ONIG_SYNTAX_JAVA only)
  92. ex. /a*+/ === /(?>a*)/
  93. 5. Anchors
  94. ^ beginning of the line
  95. $ end of the line
  96. \b word boundary
  97. \B not word boundary
  98. \A beginning of string
  99. \Z end of string, or before newline at the end
  100. \z end of string
  101. \G matching start position
  102. 6. Character class
  103. ^... negative class (lowest precedence operator)
  104. x-y range from x to y
  105. [...] set (character class in character class)
  106. ..&&.. intersection (low precedence at the next of ^)
  107. ex. [a-w&&[^c-g]z] ==> ([a-w] AND ([^c-g] OR z)) ==> [abh-w]
  108. * If you want to use '[', '-', ']' as a normal character
  109. in a character class, you should escape these characters by '\'.
  110. POSIX bracket ([:xxxxx:], negate [:^xxxxx:])
  111. Not Unicode Case:
  112. alnum alphabet or digit char
  113. alpha alphabet
  114. ascii code value: [0 - 127]
  115. blank \t, \x20
  116. cntrl
  117. digit 0-9
  118. graph include all of multibyte encoded characters
  119. lower
  120. print include all of multibyte encoded characters
  121. punct
  122. space \t, \n, \v, \f, \r, \x20
  123. upper
  124. xdigit 0-9, a-f, A-F
  125. word alphanumeric, "_" and multibyte characters
  126. Unicode Case:
  127. alnum Letter | Mark | Decimal_Number
  128. alpha Letter | Mark
  129. ascii 0000 - 007F
  130. blank Space_Separator | 0009
  131. cntrl Control | Format | Unassigned | Private_Use | Surrogate
  132. digit Decimal_Number
  133. graph [[:^space:]] && ^Control && ^Unassigned && ^Surrogate
  134. lower Lowercase_Letter
  135. print [[:graph:]] | [[:space:]]
  136. punct Connector_Punctuation | Dash_Punctuation | Close_Punctuation |
  137. Final_Punctuation | Initial_Punctuation | Other_Punctuation |
  138. Open_Punctuation
  139. space Space_Separator | Line_Separator | Paragraph_Separator |
  140. 0009 | 000A | 000B | 000C | 000D | 0085
  141. upper Uppercase_Letter
  142. xdigit 0030 - 0039 | 0041 - 0046 | 0061 - 0066
  143. (0-9, a-f, A-F)
  144. word Letter | Mark | Decimal_Number | Connector_Punctuation
  145. 7. Extended groups
  146. (?#...) comment
  147. (?imx-imx) option on/off
  148. i: ignore case
  149. m: multi-line (dot(.) match newline)
  150. x: extended form
  151. (?imx-imx:subexp) option on/off for subexp
  152. (?:subexp) not captured group
  153. (subexp) captured group
  154. (?=subexp) look-ahead
  155. (?!subexp) negative look-ahead
  156. (?<=subexp) look-behind
  157. (?<!subexp) negative look-behind
  158. Subexp of look-behind must be fixed character length.
  159. But different character length is allowed in top level
  160. alternatives only.
  161. ex. (?<=a|bc) is OK. (?<=aaa(?:b|cd)) is not allowed.
  162. In negative-look-behind, captured group isn't allowed,
  163. but shy group(?:) is allowed.
  164. (?>subexp) atomic group
  165. don't backtrack in subexp.
  166. (?<name>subexp), (?'name'subexp)
  167. define named group
  168. (All characters of the name must be a word character.)
  169. Not only a name but a number is assigned like a captured
  170. group.
  171. Assigning the same name as two or more subexps is allowed.
  172. In this case, a subexp call can not be performed although
  173. the back reference is possible.
  174. 8. Back reference
  175. \n back reference by group number (n >= 1)
  176. \k<n> back reference by group number (n >= 1)
  177. \k'n' back reference by group number (n >= 1)
  178. \k<-n> back reference by relative group number (n >= 1)
  179. \k'-n' back reference by relative group number (n >= 1)
  180. \k<name> back reference by group name
  181. \k'name' back reference by group name
  182. In the back reference by the multiplex definition name,
  183. a subexp with a large number is referred to preferentially.
  184. (When not matched, a group of the small number is referred to.)
  185. * Back reference by group number is forbidden if named group is defined
  186. in the pattern and ONIG_OPTION_CAPTURE_GROUP is not setted.
  187. back reference with nest level
  188. level: 0, 1, 2, ...
  189. \k<n+level> (n >= 1)
  190. \k<n-level> (n >= 1)
  191. \k'n+level' (n >= 1)
  192. \k'n-level' (n >= 1)
  193. \k<name+level>
  194. \k<name-level>
  195. \k'name+level'
  196. \k'name-level'
  197. Destinate relative nest level from back reference position.
  198. ex 1.
  199. /\A(?<a>|.|(?:(?<b>.)\g<a>\k<b+0>))\z/.match("reer")
  200. ex 2.
  201. r = Regexp.compile(<<'__REGEXP__'.strip, Regexp::EXTENDED)
  202. (?<element> \g<stag> \g<content>* \g<etag> ){0}
  203. (?<stag> < \g<name> \s* > ){0}
  204. (?<name> [a-zA-Z_:]+ ){0}
  205. (?<content> [^<&]+ (\g<element> | [^<&]+)* ){0}
  206. (?<etag> </ \k<name+1> >){0}
  207. \g<element>
  208. __REGEXP__
  209. p r.match('<foo>f<bar>bbb</bar>f</foo>').captures
  210. 9. Subexp call ("Tanaka Akira special")
  211. \g<name> call by group name
  212. \g'name' call by group name
  213. \g<n> call by group number (n >= 1)
  214. \g'n' call by group number (n >= 1)
  215. \g<-n> call by relative group number (n >= 1)
  216. \g'-n' call by relative group number (n >= 1)
  217. * left-most recursive call is not allowed.
  218. ex. (?<name>a|\g<name>b) => error
  219. (?<name>a|b\g<name>c) => OK
  220. * Call by group number is forbidden if named group is defined in the pattern
  221. and ONIG_OPTION_CAPTURE_GROUP is not setted.
  222. * If the option status of called group is different from calling position
  223. then the group's option is effective.
  224. ex. (?-i:\g<name>)(?i:(?<name>a)){0} match to "A"
  225. 10. Captured group
  226. Behavior of the no-named group (...) changes with the following conditions.
  227. (But named group is not changed.)
  228. case 1. /.../ (named group is not used, no option)
  229. (...) is treated as a captured group.
  230. case 2. /.../g (named group is not used, 'g' option)
  231. (...) is treated as a no-captured group (?:...).
  232. case 3. /..(?<name>..)../ (named group is used, no option)
  233. (...) is treated as a no-captured group (?:...).
  234. numbered-backref/call is not allowed.
  235. case 4. /..(?<name>..)../G (named group is used, 'G' option)
  236. (...) is treated as a captured group.
  237. numbered-backref/call is allowed.
  238. where
  239. g: ONIG_OPTION_DONT_CAPTURE_GROUP
  240. G: ONIG_OPTION_CAPTURE_GROUP
  241. ('g' and 'G' options are argued in ruby-dev ML)
  242. -----------------------------
  243. A-1. Syntax depend options
  244. + ONIG_SYNTAX_RUBY
  245. (?m): dot(.) match newline
  246. + ONIG_SYNTAX_PERL and ONIG_SYNTAX_JAVA
  247. (?s): dot(.) match newline
  248. (?m): ^ match after newline, $ match before newline
  249. A-2. Original extensions
  250. + hexadecimal digit char type \h, \H
  251. + named group (?<name>...), (?'name'...)
  252. + named backref \k<name>
  253. + subexp call \g<name>, \g<group-num>
  254. A-3. Lacked features compare with perl 5.8.0
  255. + \N{name}
  256. + \l,\u,\L,\U, \X, \C
  257. + (?{code})
  258. + (??{code})
  259. + (?(condition)yes-pat|no-pat)
  260. * \Q...\E
  261. This is effective on ONIG_SYNTAX_PERL and ONIG_SYNTAX_JAVA.
  262. A-4. Differences with Japanized GNU regex(version 0.12) of Ruby 1.8
  263. + add character property (\p{property}, \P{property})
  264. + add hexadecimal digit char type (\h, \H)
  265. + add look-behind
  266. (?<=fixed-char-length-pattern), (?<!fixed-char-length-pattern)
  267. + add possessive quantifier. ?+, *+, ++
  268. + add operations in character class. [], &&
  269. ('[' must be escaped as an usual char in character class.)
  270. + add named group and subexp call.
  271. + octal or hexadecimal number sequence can be treated as
  272. a multibyte code char in character class if multibyte encoding
  273. is specified.
  274. (ex. [\xa1\xa2], [\xa1\xa7-\xa4\xa1])
  275. + allow the range of single byte char and multibyte char in character
  276. class.
  277. ex. /[a-<<any EUC-JP character>>]/ in EUC-JP encoding.
  278. + effect range of isolated option is to next ')'.
  279. ex. (?:(?i)a|b) is interpreted as (?:(?i:a|b)), not (?:(?i:a)|b).
  280. + isolated option is not transparent to previous pattern.
  281. ex. a(?i)* is a syntax error pattern.
  282. + allowed incompleted left brace as an usual string.
  283. ex. /{/, /({)/, /a{2,3/ etc...
  284. + negative POSIX bracket [:^xxxx:] is supported.
  285. + POSIX bracket [:ascii:] is added.
  286. + repeat of look-ahead is not allowed.
  287. ex. /(?=a)*/, /(?!b){5}/
  288. + Ignore case option is effective to numbered character.
  289. ex. /\x61/i =~ "A"
  290. + In the range quantifier, the number of the minimum is omissible.
  291. /a{,n}/ == /a{0,n}/
  292. The simultanious abbreviation of the number of times of the minimum
  293. and the maximum is not allowed. (/a{,}/)
  294. + /a{n}?/ is not a non-greedy operator.
  295. /a{n}?/ == /(?:a{n})?/
  296. + invalid back reference is checked and cause error.
  297. /\1/, /(a)\2/
  298. + Zero-length match in infinite repeat stops the repeat,
  299. then changes of the capture group status are checked as stop condition.
  300. /(?:()|())*\1\2/ =~ ""
  301. /(?:\1a|())*/ =~ "a"
  302. A-5. Disabled functions by default syntax
  303. + capture history
  304. (?@...) and (?@<name>...)
  305. ex. /(?@a)*/.match("aaa") ==> [<0-1>, <1-2>, <2-3>]
  306. see sample/listcap.c file.
  307. A-6. Problems
  308. + Invalid encoding byte sequence is not checked.
  309. ex. UTF-8
  310. * Invalid first byte is treated as a character.
  311. /./u =~ "\xa3"
  312. * Incomplete byte sequence is not checked.
  313. /\w+/ =~ "a\xf3\x8ec"
  314. // END