D
Demetri
Lets pretend you have a string array and each element is a
sentence. Two of those elements read as follows:
1. The fox escaped from the hound.
2. The fox almost escaped.
Now lets say you loop the string array and inside that
loop you use a Regex class to determine if the current
element matches a certain criteria. The criteria being as
follows:
I want any string which contains the word escaped AND the
word hound in it.
What reg exp pattern would return a positive match on the
element above labled as number 1 ?
sentence. Two of those elements read as follows:
1. The fox escaped from the hound.
2. The fox almost escaped.
Now lets say you loop the string array and inside that
loop you use a Regex class to determine if the current
element matches a certain criteria. The criteria being as
follows:
I want any string which contains the word escaped AND the
word hound in it.
What reg exp pattern would return a positive match on the
element above labled as number 1 ?