re = /\s{1,}(male)\.$/gi
"A girl is a female, and a boy is a male.".match(re);
this results in " male."
what i want is "male"
I put male in parenthesis and I though that would capture just that group.
Thanks for the help
this results in " male." what i want is "male" I put male in parenthesis and I though that would capture just that group. Thanks for the help |
|||||
|
|
You need to take out the 'g' option on your regexp:
yields
|
|||||
|