Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Regex match for beginning of multiple words in string

In Javascript i want to be able to match strings that begin with a certain phrase. However, I want it to be able to match the start of any word in the phrase, not just the beginning of the phrase.

For example:

Phrase: "This is the best"

Need to Match: "th"

Result: Matches Th and th

EDIT: \b works great however it proposes another issue:

It will also match characters after foreign ones. For example if my string is "Männ", and i search for "n", it will match the n after Mä...Any ideas?

like image 248
Abadaba Avatar asked Aug 17 '10 22:08

Abadaba


People also ask

What does ?= * Mean in regex?

Save this question. . means match any character in regular expressions. * means zero or more occurrences of the SINGLE regex preceding it. My alphabet.txt contains a line abcdefghijklmnopqrstuvwxyz.

How do you match the start of a string?

The meta character “^” matches the beginning of a particular string i.e. it matches the first character of the string. For example, The expression “^\d” matches the string/line starting with a digit. The expression “^[a-z]” matches the string/line starting with a lower case alphabet.

What does \b mean in regex?

The word boundary \b matches positions where one side is a word character (usually a letter, digit or underscore—but see below for variations across engines) and the other side is not a word character (for instance, it may be the beginning of the string or a space character).

What is difference [] and () in regex?

[] denotes a character class. () denotes a capturing group. [a-z0-9] -- One character that is in the range of a-z OR 0-9.


1 Answers

"This is the best moth".match(/\bth/gi);

or with a variable for your string

var string = "This is the best moth";
alert(string.match(/\bth/gi));

\b in a regex is a word boundary so \bth will only match a th that at the beginning of a word.

gi is for a global match (look for all occurrences) and case insensitive

(I threw moth in there to as a reminder to check that it is not matched)

jsFiddle example


Edit:

So, the above only returns the part that you match (th). If you want to return the entire words, you have to match the entire word.

This is where things get tricky fast. First with no HTML entity letter:

string.match(/\bth[^\b]*?\b/gi);

Example

To match the entire word go from the word boundary \b grab the th followed by non word boundaries [^\b] until you get to another word boundary \b. The * means you want to look for 0 or more of the previous (non word boundaries) the ? mark means that this is a lazy match. In other words it doesn't expand to as big as would be possible, but stops at the first opportunity.

If you have HTML entity characters like ä (ä) things get complicated really fast, and you have to use whitespace or whitespace and a set of defined characters that may be at word boundaries.

string.match(/\sth[^\s]*|^th[^\s]*/gi);

Example with HTML entities.

Since we're not using word boundaries, we have to take care of the beginning of the string separately (|^).

The above will capture the white space at the beginning of words. Using \b will not capture white space, since \b has no width.

like image 98
Peter Ajtai Avatar answered Sep 29 '22 12:09

Peter Ajtai