003 File Manager
Current Path:
/usr/src/contrib/netbsd-tests/lib/libc/regex/data
usr
/
src
/
contrib
/
netbsd-tests
/
lib
/
libc
/
regex
/
data
/
📁
..
📄
anchor.in
(504 B)
📁
att
📄
backref.in
(677 B)
📄
basic.in
(66 B)
📄
bracket.in
(1.14 KB)
📄
c_comments.in
(712 B)
📄
complex.in
(1.64 KB)
📄
error.in
(453 B)
📄
meta.in
(387 B)
📄
nospec.in
(121 B)
📄
paren.in
(399 B)
📄
regress.in
(555 B)
📄
repet_bounded.in
(1.13 KB)
📄
repet_multi.in
(389 B)
📄
repet_ordinary.in
(166 B)
📄
startend.in
(170 B)
📄
subexp.in
(1.61 KB)
📄
subtle.in
(492 B)
📄
word_bound.in
(363 B)
📄
zero.in
(118 B)
Editing: c_comments.in
# Let's have some fun -- try to match a C comment. # first the obvious, which looks okay at first glance... /\*.*\*/ - /*x*/ /*x*/ # but... /\*.*\*/ - /*x*/y/*z*/ /*x*/y/*z*/ # okay, we must not match */ inside; try to do that... /\*([^*]|\*[^/])*\*/ - /*x*/ /*x*/ /\*([^*]|\*[^/])*\*/ - /*x*/y/*z*/ /*x*/ # but... /\*([^*]|\*[^/])*\*/ - /*x**/y/*z*/ /*x**/y/*z*/ # and a still fancier version, which does it right (I think)... /\*([^*]|\*+[^*/])*\*+/ - /*x*/ /*x*/ /\*([^*]|\*+[^*/])*\*+/ - /*x*/y/*z*/ /*x*/ /\*([^*]|\*+[^*/])*\*+/ - /*x**/y/*z*/ /*x**/ /\*([^*]|\*+[^*/])*\*+/ - /*x****/y/*z*/ /*x****/ /\*([^*]|\*+[^*/])*\*+/ - /*x**x*/y/*z*/ /*x**x*/ /\*([^*]|\*+[^*/])*\*+/ - /*x***x/y/*z*/ /*x***x/y/*z*/
Upload File
Create Folder