1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347
|
<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<meta name="Template"
content="C:\PROGRAM FILES\MICROSOFT OFFICE\OFFICE\html.dot">
<meta name="GENERATOR" content="Microsoft FrontPage Express 2.0">
<title>Regex++, Appendices</title>
</head>
<body bgcolor="#FFFFFF" link="#0000FF" vlink="#800080">
<p> </p>
<table border="0" cellpadding="7" cellspacing="0" width="100%">
<tr>
<td valign="top"><h3><img src="../../c++boost.gif"
alt="C++ Boost" width="276" height="86"></h3>
</td>
<td valign="top"><h3 align="center">Regex++, Appendices.</h3>
<p align="left"><i>Copyright (c) 1998-2001 </i></p>
<p align="left"><i>Dr John Maddock</i></p>
<p align="left"><i>Permission to use, copy, modify,
distribute and sell this software and its documentation
for any purpose is hereby granted without fee, provided
that the above copyright notice appear in all copies and
that both that copyright notice and this permission
notice appear in supporting documentation. Dr John
Maddock makes no representations about the suitability of
this software for any purpose. It is provided "as is"
without express or implied warranty.</i></p>
</td>
</tr>
</table>
<hr>
<h3><a name="implementation"></a>Appendix 1: Implementation notes</h3>
<p>This is the first port of regex++ to the boost library, and is
based on regex++ 2.x, see changes.txt for a full list of changes
from the previous version. There are no known functionality bugs
except that POSIX style equivalence classes are only guaranteed
correct if the Win32 localization model is used (the default for
Win32 builds of the library). </p>
<p>There are some aspects of the code that C++ puritans will
consider to be poor style, in particular the use of goto in some
of the algorithms. The code could be cleaned up, by changing to a
recursive implementation, although it is likely to be slower in
that case. </p>
<p>The performance of the algorithms should be satisfactory in
most cases. For example the times taken to match the ftp response
expression "^([0-9]+)(\-| |$)(.*)$" against the string
"100- this is a line of ftp response which contains a
message string" are: BSD implementation 450 micro seconds,
GNU implementation 271 micro seconds, regex++ 127 micro seconds (Pentium
P90, Win32 console app under MS Windows 95). </p>
<p>However it should be noted that there are some "pathological"
expressions which may require exponential time for matching;
these all involve nested repetition operators, for example
attempting to match the expression "(a*a)*b" against <i>N</i>
letter a's requires time proportional to <i>2</i><sup><i>N</i></sup>.
These expressions can (almost) always be rewritten in such a way
as to avoid the problem, for example "(a*a)*b" could be
rewritten as "a*b" which requires only time linearly
proportional to <i>N</i> to solve. In the general case, non-nested
repeat expressions require time proportional to <i>N</i><sup><i>2</i></sup>,
however if the clauses are mutually exclusive then they can be
matched in linear time - this is the case with "a*b",
for each character the matcher will either match an "a"
or a "b" or fail, where as with "a*a" the
matcher can't tell which branch to take (the first "a"
or the second) and so has to try both. <i>Be careful how you
write your regular expressions and avoid nested repeats if you
can! New to this version, some previously pathological cases have
been fixed - in particular searching for expressions which
contain leading repeats and/or leading literal strings should be
much faster than before. Literal strings are now searched for
using the Knuth/Morris/Pratt algorithm (this is used in
preference to the Boyer/More algorithm because it allows the
tracking of newline characters).</i> </p>
<p><i>Some aspects of the POSIX regular expression syntax are
implementation defined:</i> </p>
<ul>
<li>The "leftmost-longest" rule for determining
what matches is ambiguous, this library takes the "obvious"
interpretation: find the leftmost match, then maximize
the length of each sub-expression in turn with lower
indexed sub-expressions taking priority over higher
indexed sub-expression. </li>
<li>The behavior of multi-character collating elements is
ambiguous in the standard, in particular expressions such
as [a[.ae.]] may have subtle inconsistencies lurking in
them. This implementation matches bracket expressions as
follows: all bracket expressions match a single character
only, unless the expression contains a multi-character
collating element, either on its own, or as the endpoint
to a range, in which case the expression may match more
than one character. </li>
<li>Repeated null expressions are repeated only once, they
are treated "as if" they were matched the
maximum number of times allowed by the expression. </li>
<li>The behavior of back references is ambiguous in the
standard, in particular it is unclear whether expressions
of the form "((ab*)\2)+" should be allowed.
This implementation allows such expressions and the back
reference matches whatever the last sub-expression match
was. This means that at the end of the match, the back
references may have matched strings different from the
final value of the sub-expression to which they refer. </li>
</ul>
<hr>
<h3><a name="threads"></a>Appendix 2: Thread safety</h3>
<p>Class reg_expression<> and its typedefs regex and wregex
are thread safe, in that compiled regular expressions can safely
be shared between threads. The matching algorithms regex_match,
regex_search, regex_grep, regex_format and regex_merge are all re-entrant
and thread safe. Class match_results is now thread safe, in that
the results of a match can be safely copied from one thread to
another (for example one thread may find matches and push
match_results instances onto a queue, while another thread pops
them off the other end), otherwise use a separate instance of
match_results per thread. </p>
<p>The POSIX API functions are all re-entrant and thread safe,
regular expressions compiled with <i>regcomp</i> can also be
shared between threads. </p>
<p>The class RegEx is only thread safe if each thread gets its
own RegEx instance (apartment threading) - this is a consequence
of RegEx handling both compiling and matching regular expressions.
</p>
<p>Finally note that changing the global locale invalidates all
compiled regular expressions, therefore calling <i>set_locale</i>
from one thread while another uses regular expressions <i>will</i>
produce unpredictable results. </p>
<p>There is also a requirement that there is only one thread
executing prior to the start of main(). </p>
<hr>
<h3><a name="localisation"></a>Appendix 3: Localization</h3>
<p> Regex++ provides extensive support for run-time
localization, the localization model used can be split into two
parts: front-end and back-end. </p>
<p>Front-end localization deals with everything which the user
sees - error messages, and the regular expression syntax itself.
For example a French application could change [[:word:]] to [[:mot:]]
and \w to \m. Modifying the front end locale requires active
support from the developer, by providing the library with a
message catalogue to load, containing the localized strings.
Front-end locale is affected by the LC_MESSAGES category only. </p>
<p>Back-end localization deals with everything that occurs after
the expression has been parsed - in other words everything that
the user does not see or interact with directly. It deals with
case conversion, collation, and character class membership. The
back-end locale does not require any intervention from the
developer - the library will acquire all the information it
requires for the current locale from the underlying operating
system / run time library. This means that if the program user
does not interact with regular expressions directly - for example
if the expressions are embedded in your C++ code - then no
explicit localization is required, as the library will take care
of everything for you. For example embedding the expression [[:word:]]+
in your code will always match a whole word, if the program is
run on a machine with, for example, a Greek locale, then it will
still match a whole word, but in Greek characters rather than
Latin ones. The back-end locale is affected by the LC_TYPE and
LC_COLLATE categories. </p>
<p>There are three separate localization mechanisms supported by
regex++: </p>
<p><i>Win32 localization model.</i> </p>
<p>This is the default model when the library is compiled under
Win32, and is encapsulated by the traits class <a
href="template_class_ref.htm#regex_char_traits">w32_regex_traits</a>.
When this model is in effect there is a single global locale as
defined by the user's control panel settings, and returned by
GetUserDefaultLCID. All the settings used by regex++ are acquired
directly from the operating system bypassing the C run time
library. Front-end localization requires a resource dll,
containing a string table with the user-defined strings. The
traits class exports the function: </p>
<p>static std::string set_message_catalogue(const std::string&
s); </p>
<p>which needs to be called with a string identifying the name of
the resource dll, <i>before</i> your code compiles any regular
expressions (but not necessarily before you construct any <i>reg_expression</i>
instances): </p>
<p>boost::w32_regex_traits<char>::set_message_calalogue("mydll.dll");
</p>
<p>Note that this API sets the dll name for <i>both</i> the
narrow and wide character specializations of w32_regex_traits. </p>
<p>This model does not currently support thread specific locales
(via SetThreadLocale under Windows NT), the library provides full
Unicode support under NT, under Windows 9x the library degrades
gracefully - characters 0 to 255 are supported, the remainder are
treated as "unknown" graphic characters. </p>
<p><i>C localization model.</i> </p>
<p>This is the default model when the library is compiled under
an operating system other than Win32, and is encapsulated by the
traits class <a href="template_class_ref.htm#regex_char_traits"><i>c_regex_traits</i></a>,
Win32 users can force this model to take effect by defining the
pre-processor symbol BOOST_REGEX_USE_C_LOCALE. When this model is
in effect there is a single global locale, as set by <i>setlocale</i>.
All settings are acquired from your run time library,
consequently Unicode support is dependent upon your run time
library implementation. Front end localization requires a POSIX
message catalogue. The traits class exports the function: </p>
<p>static std::string set_message_catalogue(const std::string&
s); </p>
<p>which needs to be called with a string identifying the name of
the message catalogue, <i>before</i> your code compiles any
regular expressions (but not necessarily before you construct any
<i>reg_expression</i> instances): </p>
<p>boost::c_regex_traits<char>::set_message_calalogue("mycatalogue");
</p>
<p>Note that this API sets the dll name for <i>both</i> the
narrow and wide character specializations of c_regex_traits. If
your run time library does not support POSIX message catalogues,
then you can either provide your own implementation of
<nl_types.h> or define BOOST_RE_NO_CAT to disable front-end
localization via message catalogues. </p>
<p>Note that calling <i>setlocale</i> invalidates all compiled
regular expressions, calling <tt>setlocale(LC_ALL, "C")</tt>
will make this library behave equivalent to most traditional
regular expression libraries including version 1 of this library.
</p>
<p><i><tt>C++ </tt></i><i>localization</i><i><tt> </tt></i><i>model</i><i><tt>.</tt></i>
</p>
<p>This model is only in effect if the library is built with the
pre-processor symbol BOOST_REGEX_USE_CPP_LOCALE defined. When
this model is in effect each instance of reg_expression<>
has its own instance of std::locale, class reg_expression<>
also has a member function <i>imbue</i> which allows the locale
for the expression to be set on a per-instance basis. Front end
localization requires a POSIX message catalogue, which will be
loaded via the std::messages facet of the expression's locale,
the traits class exports the symbol: </p>
<p>static std::string set_message_catalogue(const std::string&
s); </p>
<p>which needs to be called with a string identifying the name of
the message catalogue, <i>before</i> your code compiles any
regular expressions (but not necessarily before you construct any
<i>reg_expression</i> instances): </p>
<p>boost::cpp_regex_traits<char>::set_message_calalogue("mycatalogue");
</p>
<p>Note that calling reg_expression<>::imbue will
invalidate any expression currently compiled in that instance of
reg_expression<>. This model is the one which closest fits
the ethos of the C++ standard library, however it is the model
which will produce the slowest code, and which is the least well
supported by current standard library implementations, for
example I have yet to find an implementation of std::locale which
supports either message catalogues, or locales other than "C"
or "POSIX". </p>
<p>Finally note that if you build the library with a non-default
localization model, then the appropriate pre-processor symbol (BOOST_REGEX_USE_C_LOCALE
or BOOST_REGEX_USE_CPP_LOCALE) must be defined both when you
build the support library, and when you include <boost/regex.hpp>
or <boost/cregex.hpp> in your code. The best way to ensure
this is to add the #define to <boost/regex/detail/regex_options.hpp>.
</p>
<p><i>Providing a message catalogue:</i> </p>
<p>In order to localize the front end of the library, you need to
provide the library with the appropriate message strings
contained either in a resource dll's string table (Win32 model),
or a POSIX message catalogue (C or C++ models). In the latter
case the messages must appear in message set zero of the
catalogue. The messages and their id's are as follows: <br>
</p>
<table border="0" cellpadding="6" cellspacing="0" width="624">
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">Message id </td>
<td valign="top" width="32%">Meaning </td>
<td valign="top" width="29%">Default value </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">101 </td>
<td valign="top" width="32%">The character used to start
a sub-expression. </td>
<td valign="top" width="29%">"(" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">102 </td>
<td valign="top" width="32%">The character used to end a
sub-expression declaration. </td>
<td valign="top" width="29%">")" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">103 </td>
<td valign="top" width="32%">The character used to denote
an end of line assertion. </td>
<td valign="top" width="29%">"$" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">104 </td>
<td valign="top" width="32%">The character used to denote
the start of line assertion. </td>
<td valign="top" width="29%">"^" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">105 </td>
<td valign="top" width="32%">The character used to denote
the "match any character expression". </td>
<td valign="top" width="29%">"." </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">106 </td>
<td valign="top" width="32%">The match zero or more times
repetition operator. </td>
<td valign="top" width="29%">"*" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">107 </td>
<td valign="top" width="32%">The match one or more
repetition operator. </td>
<td valign="top" width="29%">"+" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">108 </td>
<td valign="top" width="32%">The match zero or one
repetition operator. </td>
<td valign="top" width="29%">"?" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">109 </td>
<td valign="top" width="32%">The character set opening
character. </td>
<td valign="top" width="29%">"[" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">110 </td>
<td valign="top" width="32%">The character set closing
character. </td>
<td valign="top" width="29%">"]" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">111 </td>
<td valign="top" width="32%">The alternation operator. </td>
<td valign="top" width="29%">"|" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">112 </td>
<td valign="top" width="32%">The escape character. </td>
<td valign="top" width="29%">"\\" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">113 </td>
<td valign="top" width="32%">The hash character (not
currently used). </td>
<td valign="top" width="29%">"#" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">114 </td>
<td valign="top" width="32%">The range operator. </td>
<td valign="top" width="29%">"-" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">115 </td>
<td valign="top" width="32%">The repetition operator
opening character. </td>
<td valign="top" width="29%">"{" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">116 </td>
<td valign="top" width="32%">The repetition operator
closing character. </td>
<td valign="top" width="29%">"}" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">117 </td>
<td valign="top" width="32%">The digit characters. </td>
<td valign="top" width="29%">"0123456789" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">118 </td>
<td valign="top" width="32%">The character which when
preceded by an escape character represents the word
boundary assertion. </td>
<td valign="top" width="29%">"b" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">119 </td>
<td valign="top" width="32%">The character which when
preceded by an escape character represents the non-word
boundary assertion. </td>
<td valign="top" width="29%">"B" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">120 </td>
<td valign="top" width="32%">The character which when
preceded by an escape character represents the word-start
boundary assertion. </td>
<td valign="top" width="29%">"<" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">121 </td>
<td valign="top" width="32%">The character which when
preceded by an escape character represents the word-end
boundary assertion. </td>
<td valign="top" width="29%">">" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">122 </td>
<td valign="top" width="32%">The character which when
preceded by an escape character represents any word
character. </td>
<td valign="top" width="29%">"w" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">123 </td>
<td valign="top" width="32%">The character which when
preceded by an escape character represents a non-word
character. </td>
<td valign="top" width="29%">"W" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">124 </td>
<td valign="top" width="32%">The character which when
preceded by an escape character represents a start of
buffer assertion. </td>
<td valign="top" width="29%">"`A" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">125 </td>
<td valign="top" width="32%">The character which when
preceded by an escape character represents an end of
buffer assertion. </td>
<td valign="top" width="29%">"'z" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">126 </td>
<td valign="top" width="32%">The newline character. </td>
<td valign="top" width="29%">"\n" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">127 </td>
<td valign="top" width="32%">The comma separator. </td>
<td valign="top" width="29%">"," </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">128 </td>
<td valign="top" width="32%">The character which when
preceded by an escape character represents the bell
character. </td>
<td valign="top" width="29%">"a" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">129 </td>
<td valign="top" width="32%">The character which when
preceded by an escape character represents the form feed
character. </td>
<td valign="top" width="29%">"f" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">130 </td>
<td valign="top" width="32%">The character which when
preceded by an escape character represents the newline
character. </td>
<td valign="top" width="29%">"n" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">131 </td>
<td valign="top" width="32%">The character which when
preceded by an escape character represents the carriage
return character. </td>
<td valign="top" width="29%">"r" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">132 </td>
<td valign="top" width="32%">The character which when
preceded by an escape character represents the tab
character. </td>
<td valign="top" width="29%">"t" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">133 </td>
<td valign="top" width="32%">The character which when
preceded by an escape character represents the vertical
tab character. </td>
<td valign="top" width="29%">"v" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">134 </td>
<td valign="top" width="32%">The character which when
preceded by an escape character represents the start of a
hexadecimal character constant. </td>
<td valign="top" width="29%">"x" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">135 </td>
<td valign="top" width="32%">The character which when
preceded by an escape character represents the start of
an ASCII escape character. </td>
<td valign="top" width="29%">"c" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">136 </td>
<td valign="top" width="32%">The colon character. </td>
<td valign="top" width="29%">":" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">137 </td>
<td valign="top" width="32%">The equals character. </td>
<td valign="top" width="29%">"=" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">138 </td>
<td valign="top" width="32%">The character which when
preceded by an escape character represents the ASCII
escape character. </td>
<td valign="top" width="29%">"e" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">139 </td>
<td valign="top" width="32%">The character which when
preceded by an escape character represents any lower case
character. </td>
<td valign="top" width="29%">"l" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">140 </td>
<td valign="top" width="32%">The character which when
preceded by an escape character represents any non-lower
case character. </td>
<td valign="top" width="29%">"L" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">141 </td>
<td valign="top" width="32%">The character which when
preceded by an escape character represents any upper case
character. </td>
<td valign="top" width="29%">"u" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">142 </td>
<td valign="top" width="32%">The character which when
preceded by an escape character represents any non-upper
case character. </td>
<td valign="top" width="29%">"U" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">143 </td>
<td valign="top" width="32%">The character which when
preceded by an escape character represents any space
character. </td>
<td valign="top" width="29%">"s" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">144 </td>
<td valign="top" width="32%">The character which when
preceded by an escape character represents any non-space
character. </td>
<td valign="top" width="29%">"S" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">145 </td>
<td valign="top" width="32%">The character which when
preceded by an escape character represents any digit
character. </td>
<td valign="top" width="29%">"d" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">146 </td>
<td valign="top" width="32%">The character which when
preceded by an escape character represents any non-digit
character. </td>
<td valign="top" width="29%">"D" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">147 </td>
<td valign="top" width="32%">The character which when
preceded by an escape character represents the end quote
operator. </td>
<td valign="top" width="29%">"E" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">148 </td>
<td valign="top" width="32%">The character which when
preceded by an escape character represents the start
quote operator. </td>
<td valign="top" width="29%">"Q" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">149 </td>
<td valign="top" width="32%">The character which when
preceded by an escape character represents a Unicode
combining character sequence. </td>
<td valign="top" width="29%">"X" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">150 </td>
<td valign="top" width="32%">The character which when
preceded by an escape character represents any single
character. </td>
<td valign="top" width="29%">"C" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">151 </td>
<td valign="top" width="32%">The character which when
preceded by an escape character represents end of buffer
operator. </td>
<td valign="top" width="29%">"Z" </td>
<td valign="top" width="9%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="21%">152 </td>
<td valign="top" width="32%">The character which when
preceded by an escape character represents the
continuation assertion. </td>
<td valign="top" width="29%">"G" </td>
<td valign="top" width="9%"> </td>
</tr>
</table>
<p><br>
</p>
<p>Custom error messages are loaded as follows: <br>
</p>
<table border="0" cellpadding="7" cellspacing="0" width="624">
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="22%">Message ID </td>
<td valign="top" width="32%">Error message ID </td>
<td valign="top" width="31%">Default string </td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="22%">201 </td>
<td valign="top" width="32%">REG_NOMATCH </td>
<td valign="top" width="31%">"No match" </td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="22%">202 </td>
<td valign="top" width="32%">REG_BADPAT </td>
<td valign="top" width="31%">"Invalid regular
expression" </td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="22%">203 </td>
<td valign="top" width="32%">REG_ECOLLATE </td>
<td valign="top" width="31%">"Invalid collation
character" </td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="22%">204 </td>
<td valign="top" width="32%">REG_ECTYPE </td>
<td valign="top" width="31%">"Invalid character
class name" </td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="22%">205 </td>
<td valign="top" width="32%">REG_EESCAPE </td>
<td valign="top" width="31%">"Trailing backslash"
</td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="22%">206 </td>
<td valign="top" width="32%">REG_ESUBREG </td>
<td valign="top" width="31%">"Invalid back reference"
</td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="22%">207 </td>
<td valign="top" width="32%">REG_EBRACK </td>
<td valign="top" width="31%">"Unmatched [ or [^"
</td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="22%">208 </td>
<td valign="top" width="32%">REG_EPAREN </td>
<td valign="top" width="31%">"Unmatched ( or \\("
</td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="22%">209 </td>
<td valign="top" width="32%">REG_EBRACE </td>
<td valign="top" width="31%">"Unmatched \\{" </td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="22%">210 </td>
<td valign="top" width="32%">REG_BADBR </td>
<td valign="top" width="31%">"Invalid content of
\\{\\}" </td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="22%">211 </td>
<td valign="top" width="32%">REG_ERANGE </td>
<td valign="top" width="31%">"Invalid range end"
</td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="22%">212 </td>
<td valign="top" width="32%">REG_ESPACE </td>
<td valign="top" width="31%">"Memory exhausted"
</td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="22%">213 </td>
<td valign="top" width="32%">REG_BADRPT </td>
<td valign="top" width="31%">"Invalid preceding
regular expression" </td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="22%">214 </td>
<td valign="top" width="32%">REG_EEND </td>
<td valign="top" width="31%">"Premature end of
regular expression" </td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="22%">215 </td>
<td valign="top" width="32%">REG_ESIZE </td>
<td valign="top" width="31%">"Regular expression too
big" </td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="22%">216 </td>
<td valign="top" width="32%">REG_ERPAREN </td>
<td valign="top" width="31%">"Unmatched ) or \\)"
</td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="22%">217 </td>
<td valign="top" width="32%">REG_EMPTY </td>
<td valign="top" width="31%">"Empty expression"
</td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="22%">218 </td>
<td valign="top" width="32%">REG_E_UNKNOWN </td>
<td valign="top" width="31%">"Unknown error" </td>
<td valign="top" width="7%"> </td>
</tr>
</table>
<p><br>
</p>
<p>Custom character class names are loaded as followed: <br>
</p>
<table border="0" cellpadding="7" cellspacing="0" width="624">
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="22%">Message ID </td>
<td valign="top" width="32%">Description </td>
<td valign="top" width="31%">Equivalent default class
name </td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="22%">300 </td>
<td valign="top" width="32%">The character class name for
alphanumeric characters. </td>
<td valign="top" width="31%">"alnum" </td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="22%">301 </td>
<td valign="top" width="32%">The character class name for
alphabetic characters. </td>
<td valign="top" width="31%">"alpha" </td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="22%">302 </td>
<td valign="top" width="32%">The character class name for
control characters. </td>
<td valign="top" width="31%">"cntrl" </td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="22%">303 </td>
<td valign="top" width="32%">The character class name for
digit characters. </td>
<td valign="top" width="31%">"digit" </td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="22%">304 </td>
<td valign="top" width="32%">The character class name for
graphics characters. </td>
<td valign="top" width="31%">"graph" </td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="22%">305 </td>
<td valign="top" width="32%">The character class name for
lower case characters. </td>
<td valign="top" width="31%">"lower" </td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="22%">306 </td>
<td valign="top" width="32%">The character class name for
printable characters. </td>
<td valign="top" width="31%">"print" </td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="22%">307 </td>
<td valign="top" width="32%">The character class name for
punctuation characters. </td>
<td valign="top" width="31%">"punct" </td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="22%">308 </td>
<td valign="top" width="32%">The character class name for
space characters. </td>
<td valign="top" width="31%">"space" </td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="22%">309 </td>
<td valign="top" width="32%">The character class name for
upper case characters. </td>
<td valign="top" width="31%">"upper" </td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="22%">310 </td>
<td valign="top" width="32%">The character class name for
hexadecimal characters. </td>
<td valign="top" width="31%">"xdigit" </td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="22%">311 </td>
<td valign="top" width="32%">The character class name for
blank characters. </td>
<td valign="top" width="31%">"blank" </td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="22%">312 </td>
<td valign="top" width="32%">The character class name for
word characters. </td>
<td valign="top" width="31%">"word" </td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="8%"> </td>
<td valign="top" width="22%">313 </td>
<td valign="top" width="32%">The character class name for
Unicode characters. </td>
<td valign="top" width="31%">"unicode" </td>
<td valign="top" width="7%"> </td>
</tr>
</table>
<p><br>
</p>
<p>Finally, custom collating element names are loaded starting
from message id 400, and terminating when the first load
thereafter fails. Each message looks something like: "tagname
string" where <i>tagname</i> is the name used inside [[.tagname.]]
and <i>string</i> is the actual text of the collating element.
Note that the value of collating element [[.zero.]] is used for
the conversion of strings to numbers - if you replace this with
another value then that will be used for string parsing - for
example use the Unicode character 0x0660 for [[.zero.]] if you
want to use Unicode Arabic-Indic digits in your regular
expressions in place of Latin digits. </p>
<p>Note that the POSIX defined names for character classes and
collating elements are always available - even if custom names
are defined, in contrast, custom error messages, and custom
syntax messages replace the default ones. </p>
<hr>
<h3><a name="demos"></a>Appendix 4: Example Applications</h3>
<p>There are three demo applications that ship with this library,
they all come with makefiles for Borland, Microsoft and gcc
compilers, otherwise you will have to create your own makefiles. </p>
<h5>regress.exe: </h5>
<p>A regression test application that gives the matching/searching
algorithms a full workout. The presence of this program is your
guarantee that the library will behave as claimed - at least as
far as those items tested are concerned - if anyone spots
anything that isn't being tested I'd be glad to hear about it. </p>
<p>Files: <a href="test/regress/parse.cpp">parse.cpp</a>, <a
href="test/regress/regress.cpp">regress.cpp</a>, <a
href="test/regress/tests.cpp">tests.cpp</a>. </p>
<h5>jgrep.exe </h5>
<p>A simple grep implementation, run with no command line options
to find out its usage. Look at <a href="src/fileiter.cpp">fileiter.cpp</a>/fileiter.hpp
and the mapfile class to see an example of a "smart"
bidirectional iterator that can be used with regex++ or any other
STL algorithm. </p>
<p>Files: <a href="example/jgrep/jgrep.cpp">jgrep.cpp</a>, <a
href="example/jgrep/main.cpp">main.cpp</a>. </p>
<h5>timer.exe </h5>
<p>A simple interactive expression matching application, the
results of all matches are timed, allowing the programmer to
optimize their regular expressions where performance is critical.
</p>
<p>Files: <a href="example/timer/regex_timer.cpp">regex_timer.cpp</a>.
</p>
<p>The snippets examples contain the code examples used in the
documentation:</p>
<p><a href="example/snippets/regex_match_example.cpp">regex_match_example.cpp</a>:
ftp based regex_match example.</p>
<p><a href="example/snippets/regex_search_example.cpp">regex_search_example.cpp</a>:
regex_search example: searches a cpp file for class definitions.</p>
<p><a href="example/snippets/regex_grep_example_1.cpp">regex_grep_example_1.cpp</a>:
regex_grep example 1: searches a cpp file for class definitions.</p>
<p><a href="example/snippets/regex_merge_example.cpp">regex_merge_example.cpp</a>:
regex_merge example: converts a C++ file to syntax highlighted
HTML.</p>
<p><a href="example/snippets/regex_grep_example_2.cpp">regex_grep_example_2.cpp</a>:
regex_grep example 2: searches a cpp file for class definitions,
using a global callback function. </p>
<p><a href="example/snippets/regex_grep_example_3.cpp">regex_grep_example_3.cpp</a>:
regex_grep example 2: searches a cpp file for class definitions,
using a bound member function callback.</p>
<p><a href="example/snippets/regex_grep_example_4.cpp">regex_grep_example_4.cpp</a>:
regex_grep example 2: searches a cpp file for class definitions,
using a C++ Builder closure as a callback.</p>
<p><a href="example/snippets/regex_split_example_1.cpp">regex_split_example_1.cpp</a>:
regex_split example: split a string into tokens.</p>
<p><a href="example/snippets/regex_split_example_2.cpp">regex_split_example_2.cpp</a>:
regex_split example: spit out linked URL's.</p>
<hr>
<h3><a name="headers"></a>Appendix 5: Header Files</h3>
<p>There are two main headers used by this library: <boost/regex.hpp>
provides full access to the entire library, while <boost/cregex.hpp>
provides access to just the high level class RegEx, and the POSIX
API functions. </p>
<hr>
<h3><a name="redist"></a>Appendix 6: Redistributables</h3>
<p> If you are using Microsoft or Borland C++ and link to a
dll version of the run time library, then you will also link to
one of the dll versions of regex++. While these dll's are
redistributable, there are no "standard" versions, so
when installing on the users PC, you should place these in a
directory private to your application, and not in the PC's
directory path. Note that if you link to a static version of your
run time library, then you will also link to a static version of
regex++ and no dll's will need to be distributed. The possible
regex++ dll's are as follows: <br>
</p>
<table border="0" cellpadding="7" cellspacing="0" width="624">
<tr>
<td valign="top" width="7%"> </td>
<td valign="top" width="27%"><b>Development Tool</b> </td>
<td valign="top" width="30%"><b>Run Time Library</b> </td>
<td valign="top" width="30%"><b>Regex++ Dll</b> </td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="7%"> </td>
<td valign="top" width="27%">Microsoft Visual C++ 6 </td>
<td valign="top" width="30%">Msvcp60.dll and msvcrt.dll </td>
<td valign="top" width="30%">Mre200l.dll </td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="7%"> </td>
<td valign="top" width="27%">Microsoft Visual C++ 6 </td>
<td valign="top" width="30%">Msvcp60d.dll and msvcrtd.dll
</td>
<td valign="top" width="30%">Mre300dl.dll </td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="7%"> </td>
<td valign="top" width="27%">Borland C++ Builder 4 </td>
<td valign="top" width="30%">Cw3245.dll </td>
<td valign="top" width="30%">bcb4re300l.dll </td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="7%"> </td>
<td valign="top" width="27%">Borland C++ Builder 4 </td>
<td valign="top" width="30%">Cw3245mt.dll </td>
<td valign="top" width="30%">bcb4re300lm.dll </td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="7%"> </td>
<td valign="top" width="27%">Borland C++ Builder 4 </td>
<td valign="top" width="30%">Cp3245mt.dll and vcl40.bpl </td>
<td valign="top" width="30%">bcb4re300lv.dll </td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="7%"> </td>
<td valign="top" width="27%"><p align="center">Borland C++
Builder 5</p>
</td>
<td valign="top" width="30%"><p align="center">cp3250.dll</p>
</td>
<td valign="top" width="30%">bcb5re300l.dll</td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="7%"> </td>
<td valign="top" width="27%"><p align="center">Borland C++
Builder 5</p>
</td>
<td valign="top" width="30%"><p align="center">cp3250mt.dll</p>
</td>
<td valign="top" width="30%">bcb5re300lm.dll</td>
<td valign="top" width="7%"> </td>
</tr>
<tr>
<td valign="top" width="7%"> </td>
<td valign="top" width="27%"><p align="center">Borland C++
Builder 5</p>
</td>
<td valign="top" width="30%"><p align="center">cw3250mt.dll</p>
</td>
<td valign="top" width="30%">bcb5re300lv.dll</td>
<td valign="top" width="7%"> </td>
</tr>
</table>
<p>Note: you can disable automatic library selection by defining
the symbol BOOST_REGEX_NO_LIB when compiling, this is useful if
you want to statically link even though you're using the dll
version of your run time library, or if you need to debug regex++.
</p>
<hr>
<h3><a name="upgrade"></a>Notes for upgraders</h3>
<p>This version of regex++ is the first to be ported to the <a
href="http://www.boost.org/">boost</a> project, and as a result
has a number of changes to comply with the boost coding
guidelines. </p>
<p>Headers have been changed from <header> or <header.h>
to <boost/header.hpp> </p>
<p>The library namespace has changed from "jm", to
"boost". </p>
<p>The reg_xxx algorithms have been renamed regex_xxx (to improve
naming consistency). </p>
<p>Algorithm query_match has been renamed regex_match, and only
returns true if the expression matches the whole of the input
string (think input data validation). </p>
<p><i>Compiling existing code:</i> </p>
<p>The directory, libs/regex/old_include contains a set of
headers that make this version of regex++ compatible with
previous ones, either add this directory to your include path, or
copy these headers to the root directory of your boost
installation. The contents of these headers are deprecated and
undocumented - really these are just here for existing code - for
new projects use the new header forms. </p>
<hr>
<h3><a name="furtherInfo"></a>Further Information (Contacts and
Acknowledgements)</h3>
<p>The author can be contacted at <a
href="mailto:John_Maddock@compuserve.com">John_Maddock@compuserve.com</a>,
the home page for this library is at <a
href="http://ourworld.compuserve.com/homepages/John_Maddock/regexpp.htm">http://ourworld.compuserve.com/homepages/John_Maddock/regexpp.htm</a>,
and the official boost version can be obtained from <a
href="../libraries.htm">www.boost.org/libraries.htm</a>. </p>
<p>I am indebted to Robert Sedgewick's "Algorithms in C++"
for forcing me to think about algorithms and their performance,
and to the folks at boost for forcing me to <i>think</i>, period.
The following people have all contributed useful comments or
fixes: Dave Abrahams, Mike Allison, Edan Ayal, Jayashree
Balasubramanian, Jan Blsche, Beman Dawes, Paul Baxter, David
Bergman, David Dennerline, Edward Diener, Peter Dimov, Robert
Dunn, Fabio Forno, Tobias Gabrielsson, Rob Gillen, Marc Gregoire,
Chris Hecker, Nick Hodapp, Jesse Jones, Martin Jost, Boris
Krasnovskiy, Jan Hermelink, Max Leung, Wei-hao Lin, Jens Maurer,
Richard Peters, Heiko Schmidt, Jason Shirk, Gerald Slacik, Scobie
Smith, Mike Smyth, Alexander Sokolovsky, Herv Poirier, Michael
Raykh, Marc Recht, Scott VanCamp, Bruno Voigt, Alexey Voinov,
Jerry Waldorf, Rob Ward, Lealon Watts, Thomas Witt and Yuval
Yosef. I am also grateful to the manuals supplied with the Henry
Spencer, Perl and GNU regular expression libraries - wherever
possible I have tried to maintain compatibility with these
libraries and with the POSIX standard - the code however is
entirely my own, including any bugs! I can absolutely guarantee
that I will not fix any bugs I don't know about, so if you have
any comments or spot any bugs, please get in touch. </p>
<p>Useful further information can be found at: </p>
<p>A short tutorial on regular expressions <a
href="http://www.devshed.com/Server_Side/Administration/RegExp/">can
be found here</a>.</p>
<p>The <a
href="http://www.opengroup.org/onlinepubs/7908799/toc.htm">Open
Unix Specification</a> contains a wealth of useful material,
including the regular expression syntax, and specifications for <a
href="http://www.opengroup.org/onlinepubs/7908799/xsh/regex.h.html"><regex.h></a>
and <a
href="http://www.opengroup.org/onlinepubs/7908799/xsh/nl_types.h.html"><nl_types.h></a>.
</p>
<p>The <a
href="http://www.cs.purdue.edu/homes/stelo/pattern.html">Pattern
Matching Pointers</a> site is a "must visit" resource
for anyone interested in pattern matching. </p>
<p><a href="http://glimpse.cs.arizona.edu/">Glimpse and Agrep</a>,
use a simplified regular expression syntax to achieve faster
search times. </p>
<p><a href="http://glimpse.cs.arizona.edu/udi.html">Udi Manber</a>
and <a href="http://www.dcc.uchile.cl/~rbaeza/">Ricardo Baeza-Yates</a>
both have a selection of useful pattern matching papers available
from their respective web sites. </p>
<hr>
<p><i>Copyright </i><a href="mailto:John_Maddock@compuserve.com"><i>Dr
John Maddock</i></a><i> 1998-2000 all rights reserved.</i> </p>
</body>
</html>
|