মূল কন্টেন্টে যান
eLearner.app
মডিউল 4 · 2-এর পাঠ 4কোর্সে 14/32~10 min
মডিউল পাঠ (2/4)

বিকল্প: `|`

The pipe | is the OR of regex: the pattern matches if one of the alternatives matches. Its precedence is very low: | separates everything to its left and right up to the enclosing group or the start of the pattern.

Code
Pattern: cane|gatto|criceto
Sample:  Ho un cane, un gatto e un criceto.
               ^^^^     ^^^^^         ^^^^^^^

Parentheses drive precedence

Without parentheses, alternatives span from start to end of the pattern. Almost always you want to limit the OR to a portion of the pattern: wrap it in a group.

Code
Pattern   Significato (errato vs corretto)
^a|b$     "inizio + a" oppure "b + fine"           (probabilmente sbagliato)
^(a|b)$   "inizio + (a oppure b) + fine"           (probabilmente giusto)

About the typical ordering of alternatives: put the most specific/longest ones first. The engine tries from left to right and stops at the first one that matches: gat|gatto would always only match gat.

Precedence and isolation of alternatives

The | operator has very low precedence. If you write ^abc|def$, you are looking for "a string starting with abc OR a string ending with def". To look for "start of string followed by abc or def, followed by end of string", you must write ^(abc|def)$.

Try it

ব্যায়াম#regex.m4.l2.e1
প্রচেষ্টা: 0লোড হচ্ছে...

Find every occurrence of the three animals `cane`, `gatto`, `criceto` in the text (in any order).

সম্পাদক লোড হচ্ছে...
ইঙ্গিত দেখান

The pipe separates alternatives. Use the g flag to catch them all.

সমাধান 3 প্রচেষ্টার পরে উপলব্ধ

Review exercise

ব্যায়াম#regex.m4.l2.e2
প্রচেষ্টা: 0লোড হচ্ছে...

Find the words `gennaio` or `febbraio` ONLY as whole words (use `\\b` to avoid matching inside longer words). Use parentheses to limit the alternation.

সম্পাদক লোড হচ্ছে...
ইঙ্গিত দেখান

\\b(gennaio|febbraio)\\b anchors the choice to whole words.

সমাধান 3 প্রচেষ্টার পরে উপলব্ধ

Additional challenge

ব্যায়াম#regex.m4.l2.e3
প্রচেষ্টা: 0লোড হচ্ছে...

Find filenames ending with the extensions `.jpg`, `.png`, or `.gif`.

সম্পাদক লোড হচ্ছে...
ইঙ্গিত দেখান

Use the pipe inside a group to alternate between extensions.

সমাধান 3 প্রচেষ্টার পরে উপলব্ধ