Cookies help us deliver our services. By using our services, you agree to our use of cookies. More information

Difference between revisions of "RegEx Pattern Matching"

From NoSQLZoo
Jump to: navigation, search
(Convert to mongo)
m
 
(2 intermediate revisions by the same user not shown)
Line 4: Line 4:
  
 
<div class="q" data-lang="mongo">
 
<div class="q" data-lang="mongo">
You can use <code>'$regex':"^B"</code> to get all the countries that start with B.
+
You can use <code>'$regex': "^B"</code> to get all the countries that start with B.
 
<p class="strong">Find the countries that start with Y</p>
 
<p class="strong">Find the countries that start with Y</p>
<pre class="def">db.world.find({"name":{'$regex':"^Y"}},{"name":1,"_id":0}).pretty()</pre>
+
<pre class="def"><nowiki>db.world.find({"name": {'$regex': "^Y"}}, {"name": 1, "_id": 0}).pretty();</nowiki></pre>
 
</div>
 
</div>
  
Line 12: Line 12:
 
You can use <code>'$regex':"a$"</code> to get all the countries that end with a.
 
You can use <code>'$regex':"a$"</code> to get all the countries that end with a.
 
<p class="strong">Find the countries that end with y</p>
 
<p class="strong">Find the countries that end with y</p>
<pre class="def">db.world.find({"name": {'$regex': "y$"}}, {"name": 1, "_id": 0}).pretty()</pre>
+
<pre class="def"><nowiki>db.world.find({"name": {'$regex': "y$"}}, {"name": 1, "_id": 0}).pretty();</nowiki></pre>
 
</div>
 
</div>
  
Line 18: Line 18:
 
Luxembourg has an <b>x</b>, so does one other country, list them both
 
Luxembourg has an <b>x</b>, so does one other country, list them both
 
<p class="strong">Find the countries that contain the letter x</p>
 
<p class="strong">Find the countries that contain the letter x</p>
<pre class="def">db.world.find({"name": {'$regex': "x"}}, {"name": 1, "_id": 0}).pretty()</pre>
+
<pre class="def"><nowiki>db.world.find({"name": {'$regex': "x"}}, {"name": 1, "_id": 0}).pretty();</nowiki></pre>
 
</div>
 
</div>
  
Line 24: Line 24:
 
Iceland and Switzerland end with <b>land</b> but where are the others?
 
Iceland and Switzerland end with <b>land</b> but where are the others?
 
<p class="strong">Find the countries that end with land</p>
 
<p class="strong">Find the countries that end with land</p>
<pre class="def">db.world.find({"name": {'$regex': "land$"}}, {"name": 1,"_id": 0}).pretty()</pre>
+
<pre class="def"><nowiki>db.world.find({"name": {'$regex': "land$"}}, {"name": 1,"_id": 0}).pretty();</nowiki></pre>
 
</div>
 
</div>
  
Line 31: Line 31:
 
You can use <code>.*</code> to match any amount of any characters except newlines.
 
You can use <code>.*</code> to match any amount of any characters except newlines.
 
<p class="strong">Find the countries that start with C and end with ia</p>
 
<p class="strong">Find the countries that start with C and end with ia</p>
<pre class="def">db.world.find({"name": {'$regex': "^C.*ia$"}},{"name": 1, "_id": 0}).pretty()</pre>
+
<pre class="def"><nowiki>db.world.find({"name": {'$regex': "^C.*ia$"}},{"name": 1, "_id": 0}).pretty();</nowiki></pre>
 
</div>
 
</div>
  
Line 37: Line 37:
 
Greece has a double <b>e</b>, who has a double <b>o</b>?<br/>
 
Greece has a double <b>e</b>, who has a double <b>o</b>?<br/>
 
<p class="strong">Find the country that has oo in its name</p>
 
<p class="strong">Find the country that has oo in its name</p>
<pre class="def">db.world.find({"name": {'$regex': "oo"}},{"name": 1, "_id": 0}).pretty()</pre>
+
<pre class="def"><nowiki>db.world.find({"name": {'$regex': "oo"}},{"name": 1, "_id": 0}).pretty();</nowiki></pre>
 
</div>
 
</div>
  
Line 44: Line 44:
 
<p class="strong">Find the countries that have three or more letter a.</p>
 
<p class="strong">Find the countries that have three or more letter a.</p>
 
<code>[Aa] matches both capital and lowercase A.</code>
 
<code>[Aa] matches both capital and lowercase A.</code>
<pre class="def">db.world.find({"name": {'$regex': "(.*[aA].*){3}"}}, {"name": 1, "_id": 0}).pretty()</pre>
+
<pre class="def"><nowiki>db.world.find({"name": {'$regex': "(.*[aA].*){3}"}}, {"name": 1, "_id": 0}).pretty();</nowiki></pre>
 
</div>
 
</div>
  
Line 51: Line 51:
 
<code>.*</code> Indicates zero or more characters, <code>.</code> indicates just one.
 
<code>.*</code> Indicates zero or more characters, <code>.</code> indicates just one.
 
<p class="strong">Find the countries that have "t" as the second character.</p>
 
<p class="strong">Find the countries that have "t" as the second character.</p>
<pre class="def">db.world.find({"name": {'$regex': "^.t"}}, {"name": 1, "_id": 0}).pretty()</pre>
+
<pre class="def"><nowiki>db.world.find({"name": {'$regex': "^.t"}}, {"name": 1, "_id": 0}).pretty();</nowiki></pre>
 
</div>
 
</div>
  
Line 57: Line 57:
 
Les<b>o</b>th<b>o</b> and M<b>o</b>ld<b>o</b>va both have two o characters seperated by two other characters.
 
Les<b>o</b>th<b>o</b> and M<b>o</b>ld<b>o</b>va both have two o characters seperated by two other characters.
 
<p class="strong">Find the countries that have two "o" characters separated by two others.</p>
 
<p class="strong">Find the countries that have two "o" characters separated by two others.</p>
<pre class="def">db.world.find({"name": {'$regex': "o..o"}}, {"name": 1, "_id": 0}).pretty()</pre>
+
<pre class="def"><nowiki>db.world.find({"name": {'$regex': "o..o"}}, {"name": 1, "_id": 0}).pretty();</nowiki></pre>
 
</div>
 
</div>
  
Line 63: Line 63:
 
Cuba and Togo have four character names.
 
Cuba and Togo have four character names.
 
<p class="strong">Find the countries that have exactly four characters</p>
 
<p class="strong">Find the countries that have exactly four characters</p>
<pre class="def">db.world.find({"name": {'$regex': "^.{4}$"}}, {"name": 1, "_id": 0}).pretty()</pre>
+
<pre class="def"><nowiki>db.world.find({"name": {'$regex': "^.{4}$"}}, {"name": 1, "_id": 0}).pretty();</nowiki></pre>
 
</div>
 
</div>
  
Line 74: Line 74:
 
</div>
 
</div>
 
<p class="strong">Find the country where the name is the capital city.</p>
 
<p class="strong">Find the country where the name is the capital city.</p>
<pre class="def">db.world.find({"$where":"this.name === this.capital"}, {"name": 1, "capital": 1, "_id": 0}).pretty()</pre>
+
<pre class="def"><nowiki>db.world.find({"$where":"this.name === this.capital"}, {"name": 1, "capital": 1, "_id": 0}).pretty();</nowiki></pre>
 
</div>
 
</div>
  
Line 80: Line 80:
 
The capital of <b>Mexico</b> is <b>Mexico City</b>. Show all the countries where the capital has the country together with the word "City".
 
The capital of <b>Mexico</b> is <b>Mexico City</b>. Show all the countries where the capital has the country together with the word "City".
 
<p class="strong">Find the country where the capital is the country plus "City".</p>
 
<p class="strong">Find the country where the capital is the country plus "City".</p>
<pre class="def">db.world.find({"$where": "this.capital === this.name + ' City'"},{"name":1, "capital": 1, "_id":0}).pretty()</pre>
+
<pre class="def"><nowiki>db.world.find({"$where": "this.capital === this.name + ' City'"},{"name": 1, "capital": 1, "_id": 0}).pretty();</nowiki></pre>
 
</div>
 
</div>
  
Line 86: Line 86:
 
<p class="strong">Find the capital and the name where the capital includes the name of the country.</p>
 
<p class="strong">Find the capital and the name where the capital includes the name of the country.</p>
 
You should include countries like <b>Luxembourg</b> where the capital is <b>Luxembourg</b>, and countries like <b>Mexico</b> where the capital is <b>Mexico City</b>
 
You should include countries like <b>Luxembourg</b> where the capital is <b>Luxembourg</b>, and countries like <b>Mexico</b> where the capital is <b>Mexico City</b>
<pre class="def">db.world.find({"$where": "this.capital.match(this.name)"}, {"name": 1, "capital": 1, "_id": 0}).pretty()</pre>
+
<pre class="def"><nowiki>db.world.find({"$where": "this.capital.match(this.name)"}, {"name": 1, "capital": 1, "_id": 0}).pretty();</nowiki></pre>
 
</div>
 
</div>
  
Line 98: Line 98:
 
<code>.*</code> is the same as '0 or more characters' and <code>.+</code> is the same as "at least one character"
 
<code>.*</code> is the same as '0 or more characters' and <code>.+</code> is the same as "at least one character"
 
</div>  
 
</div>  
<pre class="def">db.world.find({"$where": "this.capital.match(new RegExp('^' + this.name  + '.+$$'))"}, {"name": 1, "capital": 1, "_id": 0}).pretty()</pre>
+
<pre class="def"><nowiki>db.world.find({"$where": "this.capital.match(new RegExp('^' + this.name  + '.+$$'))"}, {"name": 1, "capital": 1, "_id": 0}).pretty();</nowiki></pre>
 
</div>
 
</div>

Latest revision as of 20:55, 21 June 2018

Pattern Matching String

This tutorial uses RegEx to check names. We will be using find() on the collection world.

You can use '$regex': "^B" to get all the countries that start with B.

Find the countries that start with Y

db.world.find({"name": {'$regex': "^Y"}}, {"name": 1, "_id": 0}).pretty();

You can use '$regex':"a$" to get all the countries that end with a.

Find the countries that end with y

db.world.find({"name": {'$regex': "y$"}}, {"name": 1, "_id": 0}).pretty();

Luxembourg has an x, so does one other country, list them both

Find the countries that contain the letter x

db.world.find({"name": {'$regex': "x"}}, {"name": 1, "_id": 0}).pretty();

Iceland and Switzerland end with land but where are the others?

Find the countries that end with land

db.world.find({"name": {'$regex': "land$"}}, {"name": 1,"_id": 0}).pretty();

Columbia starts with a C and ends with ia - there are two other countries like this.
You can use .* to match any amount of any characters except newlines.

Find the countries that start with C and end with ia

db.world.find({"name": {'$regex': "^C.*ia$"}},{"name": 1, "_id": 0}).pretty();

Greece has a double e, who has a double o?

Find the country that has oo in its name

db.world.find({"name": {'$regex': "oo"}},{"name": 1, "_id": 0}).pretty();

Bahamas has three a, who else?

Find the countries that have three or more letter a.

[Aa] matches both capital and lowercase A.

db.world.find({"name": {'$regex': "(.*[aA].*){3}"}}, {"name": 1, "_id": 0}).pretty();

India and Angola have n as their second character.
.* Indicates zero or more characters, . indicates just one.

Find the countries that have "t" as the second character.

db.world.find({"name": {'$regex': "^.t"}}, {"name": 1, "_id": 0}).pretty();

Lesotho and Moldova both have two o characters seperated by two other characters.

Find the countries that have two "o" characters separated by two others.

db.world.find({"name": {'$regex': "o..o"}}, {"name": 1, "_id": 0}).pretty();

Cuba and Togo have four character names.

Find the countries that have exactly four characters

db.world.find({"name": {'$regex': "^.{4}$"}}, {"name": 1, "_id": 0}).pretty();

Complex Examples

The capital of Luxembourg is Luxembourg. Show all the countries where the capital is the same as the name of the country

You can compare two fields by using where
db.<collection>.find({"$where":"this.<field1> <<operator>> this.<field2>"})
Where uses JavaScript on each document,this means you are able to call string methods such as .match()

Find the country where the name is the capital city.

db.world.find({"$where":"this.name === this.capital"}, {"name": 1, "capital": 1, "_id": 0}).pretty();

The capital of Mexico is Mexico City. Show all the countries where the capital has the country together with the word "City".

Find the country where the capital is the country plus "City".

db.world.find({"$where": "this.capital === this.name + ' City'"},{"name": 1, "capital": 1, "_id": 0}).pretty();

Find the capital and the name where the capital includes the name of the country.

You should include countries like Luxembourg where the capital is Luxembourg, and countries like Mexico where the capital is Mexico City

db.world.find({"$where": "this.capital.match(this.name)"}, {"name": 1, "capital": 1, "_id": 0}).pretty();

Find the capital and the name where the capital is an extension of name of the country.

You should include Mexico City as it is longer than Mexico. You should not include Luxembourg as the capital is the same as the country.

. matches a single character.
* matches zero or more of the previous character or string if a string is given in brackets, eg: (abc)*
+ matches one or more of the previous character or string.
.* is the same as '0 or more characters' and .+ is the same as "at least one character"

db.world.find({"$where": "this.capital.match(new RegExp('^' + this.name  + '.+$$'))"}, {"name": 1, "capital": 1, "_id": 0}).pretty();