1229 |
|
|
1230 |
/(?P<abc>abc(?P<def>def)(?P<abc>xyz))/ |
/(?P<abc>abc(?P<def>def)(?P<abc>xyz))/ |
1231 |
|
|
1232 |
|
"\[((?P<elem>\d+)(,(?P>elem))*)\]" |
1233 |
|
[10,20,30,5,5,4,4,2,43,23,4234] |
1234 |
|
*** Failers |
1235 |
|
[] |
1236 |
|
|
1237 |
|
"\[((?P<elem>\d+)(,(?P>elem))*)?\]" |
1238 |
|
[10,20,30,5,5,4,4,2,43,23,4234] |
1239 |
|
[] |
1240 |
|
|
1241 |
|
/(a(b(?2)c))?/D |
1242 |
|
|
1243 |
|
/(a(b(?2)c))*/D |
1244 |
|
|
1245 |
|
/(a(b(?2)c)){0,2}/D |
1246 |
|
|
1247 |
|
/[ab]{1}+/D |
1248 |
|
|
1249 |
|
/((w\/|-|with)*(free|immediate)*.*?shipping\s*[!.-]*)/i |
1250 |
|
Baby Bjorn Active Carrier - With free SHIPPING!! |
1251 |
|
|
1252 |
|
/((w\/|-|with)*(free|immediate)*.*?shipping\s*[!.-]*)/iS |
1253 |
|
Baby Bjorn Active Carrier - With free SHIPPING!! |
1254 |
|
|
1255 |
|
/a*.*b/SD |
1256 |
|
|
1257 |
|
/(a|b)*.?c/SD |
1258 |
|
|
1259 |
/ End of testinput2 / |
/ End of testinput2 / |