Regex for matching words, even though they might be words apart
So for the string:
A large chicken, either thighs or breasts
I need a regex to match the term "chicken breast
"
So it would be something like /chicken(.*?)b开发者_如何学JAVAreast/
would it not?
Thanks.
Yes. Something like that.
精彩评论