| CIT597 Quiz 1 Fall, 2004 |
Name_________________________________________ |
| String | Pattern | Matched by Java's find
method (if more than one match, show the first) |
|---|---|---|
| Sky Captain | [a-z]+ | |
| CSS and XML | ([A-Za-z]+ )+ | |
| CSS and XML | ([A-Za-z] +)+ | |
| THX1138 | [^0-9]+ | |
| foo="bar" | ("?)[a-z]+\1 |