I have a textbox where the user can specified the filters of one search:
- by author
- by title
- by year
How I can match only the word after "by" with regex in JavaScript?
I tried with by\b(\w*) and by\b(.*)\b but this match the rest of the sentence.
Thanks in advance!

by\b(\w*)doesn't work.\bdoesn't match an actual character; it matches a (zero-width) boundary between a non-word character and a word character. For example,a\b%is equivalent to justa%. So something like\w\b\wcan never match anything: it matches two word characters, with the property that one of them is a word character and one is not. – ruakh Nov 25 '11 at 15:56