1383 |
|
|
1384 |
/\Aabc\Z/m |
/\Aabc\Z/m |
1385 |
abc |
abc |
1386 |
|
abc\n |
1387 |
*** Failers |
*** Failers |
1388 |
qqq\nabc |
qqq\nabc |
1389 |
abc\nzzz |
abc\nzzz |
1390 |
qqq\nabc\nzzz |
qqq\nabc\nzzz |
1391 |
|
|
1392 |
/\A(.)*\Z/s |
/\A(.)*\Z/s |
1393 |
abc\ndef |
abc\ndef |
1394 |
|
|
1441 |
ABCabc |
ABCabc |
1442 |
abcABC |
abcABC |
1443 |
|
|
1444 |
/(main(OPT)?)+/ |
/(main(O)?)+/ |
1445 |
mainmain |
mainmain |
1446 |
mainOPTmain |
mainOmain |
1447 |
|
|
1448 |
/ab{3cd/ |
/ab{3cd/ |
1449 |
ab{3cd |
ab{3cd |
1592 |
aaaabcd |
aaaabcd |
1593 |
aaAabcd |
aaAabcd |
1594 |
|
|
1595 |
|
/\000\001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037\040\041\042\043\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065\066\067\070\071\072\073\074\075\076\077\100\101\102\103\104\105\106\107\110\111\112\113\114\115\116\117\120\121\122\123\124\125\126\127\130\131\132\133\134\135\136\137\140\141\142\143\144\145\146\147\150\151\152\153\154\155\156\157\160\161\162\163\164\165\166\167\170\171\172\173\174\175\176\177\200\201\202\203\204\205\206\207\210\211\212\213\214\215\216\217\220\221\222\223\224\225\226\227\230\231\232\233\234\235\236\237\240\241\242\243\244\245\246\247\250\251\252\253\254\255\256\257\260\261\262\263\264\265\266\267\270\271\272\273\274\275\276\277\300\301\302\303\304\305\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327\330\331\332\333\334\335\336\337\340\341\342\343\344\345\346\347\350\351\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\372\373\374\375\376\377/ |
1596 |
|
\000\001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037\040\041\042\043\044\045\046\047\050\051\052\053\054\055\056\057\060\061\062\063\064\065\066\067\070\071\072\073\074\075\076\077\100\101\102\103\104\105\106\107\110\111\112\113\114\115\116\117\120\121\122\123\124\125\126\127\130\131\132\133\134\135\136\137\140\141\142\143\144\145\146\147\150\151\152\153\154\155\156\157\160\161\162\163\164\165\166\167\170\171\172\173\174\175\176\177\200\201\202\203\204\205\206\207\210\211\212\213\214\215\216\217\220\221\222\223\224\225\226\227\230\231\232\233\234\235\236\237\240\241\242\243\244\245\246\247\250\251\252\253\254\255\256\257\260\261\262\263\264\265\266\267\270\271\272\273\274\275\276\277\300\301\302\303\304\305\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327\330\331\332\333\334\335\336\337\340\341\342\343\344\345\346\347\350\351\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\372\373\374\375\376\377 |
1597 |
|
|
1598 |
|
/P[^*]TAIRE[^*]{1,6}?LL/ |
1599 |
|
xxxxxxxxxxxPSTAIREISLLxxxxxxxxx |
1600 |
|
|
1601 |
|
/P[^*]TAIRE[^*]{1,}?LL/ |
1602 |
|
xxxxxxxxxxxPSTAIREISLLxxxxxxxxx |
1603 |
|
|
1604 |
|
/(\.\d\d[1-9]?)\d+/ |
1605 |
|
1.230003938 |
1606 |
|
1.875000282 |
1607 |
|
1.235 |
1608 |
|
|
1609 |
|
/(\.\d\d((?=0)|\d(?=\d)))/ |
1610 |
|
1.230003938 |
1611 |
|
1.875000282 |
1612 |
|
*** Failers |
1613 |
|
1.235 |
1614 |
|
|
1615 |
|
/a(?)b/ |
1616 |
|
ab |
1617 |
|
|
1618 |
|
/\b(foo)\s+(\w+)/i |
1619 |
|
Food is on the foo table |
1620 |
|
|
1621 |
|
/foo(.*)bar/ |
1622 |
|
The food is under the bar in the barn. |
1623 |
|
|
1624 |
|
/foo(.*?)bar/ |
1625 |
|
The food is under the bar in the barn. |
1626 |
|
|
1627 |
|
/(.*)(\d*)/ |
1628 |
|
I have 2 numbers: 53147 |
1629 |
|
|
1630 |
|
/(.*)(\d+)/ |
1631 |
|
I have 2 numbers: 53147 |
1632 |
|
|
1633 |
|
/(.*?)(\d*)/ |
1634 |
|
I have 2 numbers: 53147 |
1635 |
|
|
1636 |
|
/(.*?)(\d+)/ |
1637 |
|
I have 2 numbers: 53147 |
1638 |
|
|
1639 |
|
/(.*)(\d+)$/ |
1640 |
|
I have 2 numbers: 53147 |
1641 |
|
|
1642 |
|
/(.*?)(\d+)$/ |
1643 |
|
I have 2 numbers: 53147 |
1644 |
|
|
1645 |
|
/(.*)\b(\d+)$/ |
1646 |
|
I have 2 numbers: 53147 |
1647 |
|
|
1648 |
|
/(.*\D)(\d+)$/ |
1649 |
|
I have 2 numbers: 53147 |
1650 |
|
|
1651 |
|
/^\D*(?!123)/ |
1652 |
|
ABC123 |
1653 |
|
|
1654 |
|
/^(\D*)(?=\d)(?!123)/ |
1655 |
|
ABC445 |
1656 |
|
*** Failers |
1657 |
|
ABC123 |
1658 |
|
|
1659 |
/ End of test input / |
/ End of test input / |