regex.qbk 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. [article Boost.Regex
  2. [quickbook 1.7]
  3. [copyright 1998-2013 John Maddock]
  4. [license
  5. Distributed under the Boost Software License, Version 1.0.
  6. (See accompanying file LICENSE_1_0.txt or copy at
  7. [@http://www.boost.org/LICENSE_1_0.txt])
  8. ]
  9. [authors [Maddock, John]]
  10. [version 5.1.4]
  11. [/last-revision $Date$]
  12. ]
  13. [import ../performance/doc/performance_tables.qbk]
  14. [template super[x]'''<superscript>'''[x]'''</superscript>''']
  15. [template sub[x]'''<subscript>'''[x]'''</subscript>''']
  16. [template tr1[] [@http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2005/n1836.pdf Technical Report on C++ Library Extensions]]
  17. [template syntax_option_type[] [link boost_regex.ref.syntax_option_type `syntax_option_type`]]
  18. [template error_type[] [link boost_regex.ref.error_type `error_type`]]
  19. [template bad_expression[] [link boost_regex.ref.bad_expression `bad_expression`]]
  20. [template regex_error[] [link boost_regex.ref.bad_expression `regex_error`]]
  21. [template basic_regex[] [link boost_regex.ref.basic_regex `basic_regex`]]
  22. [template match_results[] [link boost_regex.ref.match_results `match_results`]]
  23. [template sub_match[] [link boost_regex.ref.sub_match `sub_match`]]
  24. [template match_flag_type[] [link boost_regex.ref.match_flag_type `match_flag_type`]]
  25. [template regex_iterator[] [link boost_regex.ref.regex_iterator `regex_iterator`]]
  26. [template regex_token_iterator[] [link boost_regex.ref.regex_token_iterator `regex_token_iterator`]]
  27. [template regex_search[] [link boost_regex.ref.regex_search `regex_search`]]
  28. [template regex_match[] [link boost_regex.ref.regex_match `regex_match`]]
  29. [template regex_replace[] [link boost_regex.ref.regex_replace `regex_replace`]]
  30. [template regex_grep[] [link boost_regex.ref.deprecated.regex_grep `regex_grep`]]
  31. [template regex_split[] [link boost_regex.ref.deprecated.regex_split `regex_split`]]
  32. [template match_results_format[] [link boost_regex.match_results_format `match_results<>::format`]]
  33. [template perl_format[] [link boost_regex.format.perl_format Perl]]
  34. [template sed_format[] [link boost_regex.format.sed_format Sed]]
  35. [template boost_extended_format[] [link boost_regex.format.boost_format_syntax Boost-Extended]]
  36. [/depricated stuff:]
  37. [template RegEx[] [link boost_regex.ref.deprecated.old_regex `RegEx`]]
  38. [template regcomp[] [link boost_regex.ref.posix.regcomp `regcomp`]]
  39. [template regexec[] [link boost_regex.ref.posix.regexec `regexec`]]
  40. [template regerror[] [link boost_regex.ref.posix.regerror `regerror`]]
  41. [template regfree[] [link boost_regex.ref.posix.regfree `regfree`]]
  42. A printer-friendly
  43. [@http://sourceforge.net/projects/boost/files/boost-docs/
  44. PDF version of this manual is also available].
  45. [include configuration.qbk]
  46. [include install.qbk]
  47. [include introduction.qbk]
  48. [include unicode.qbk]
  49. [include captures.qbk]
  50. [include partial_matches.qbk]
  51. [include syntax.qbk]
  52. [include format_syntax.qbk]
  53. [section:ref Reference]
  54. [include basic_regex.qbk]
  55. [include match_result.qbk]
  56. [include sub_match.qbk]
  57. [include regex_match.qbk]
  58. [include regex_search.qbk]
  59. [include regex_replace.qbk]
  60. [include regex_iterator.qbk]
  61. [include regex_token_iterator.qbk]
  62. [include bad_expression.qbk]
  63. [include syntax_option_type.qbk]
  64. [include match_flag_type.qbk]
  65. [include error_type.qbk]
  66. [include regex_traits.qbk]
  67. [include non_std_strings.qbk]
  68. [include posix_api.qbk]
  69. [include concepts.qbk]
  70. [section:deprecated Deprecated Interfaces]
  71. [include regex_format.qbk]
  72. [include regex_grep.qbk]
  73. [include regex_split.qbk]
  74. [include old_regex.qbk]
  75. [endsect]
  76. [section:internals Internal Details]
  77. [include unicode_iterators.qbk]
  78. [endsect]
  79. [endsect]
  80. [section:background Background Information]
  81. [include headers.qbk]
  82. [include locale.qbk]
  83. [include thread_safety.qbk]
  84. [include examples.qbk]
  85. [include further_info.qbk]
  86. [include faq.qbk]
  87. [include performance.qbk]
  88. [include standards.qbk]
  89. [include redistributables.qbk]
  90. [include acknowledgements.qbk]
  91. [include history.qbk]
  92. [endsect]