Toolyard

Regex Basics: A Beginner's Guide With Examples

What a regex is

A regular expression is a pattern for finding text. cat finds the letters "cat" anywhere, including in "concatenate". Special characters let the pattern describe kinds of text instead of exact letters.

The building blocks

.any one character except a line break
\d, \w, \sa digit; a letter, digit or underscore; a space, tab or line break
[aeiou], [^0-9]any one of these characters; any character that is not a digit
*, +, ?zero or more, one or more, zero or one of what comes before
{3}, {2,4}exactly 3; between 2 and 4
^, $the start and end of the text (or of each line with the m flag)
\ba word boundary: \bcat\b finds "cat" but not "concatenate"
( ), |a group you can reuse in a replacement; either this or that

To match a special character itself, put a backslash in front: \. matches a full stop.

Examples

  • \d{3}-\d{4} finds numbers written like 555-0123.
  • ^[ \t]+|[ \t]+$ with the g and m flags finds spaces and tabs at the start and end of each line, ready to be replaced with nothing.
  • (\d{4})-(\d{2})-(\d{2}) replaced with $3/$2/$1 turns 2024-09-27 into 27/09/2024.

Flags, and greedy matching

The g flag finds every match rather than the first, i ignores case and m makes ^ and $ work per line. Quantifiers are greedy: <.*> matches from the first < to the last > on a line. Add ? to make them stop as early as possible: <.*?>.

Try patterns with live highlighting in the Regex Tester, which uses JavaScript syntax, and use them on your own text in Find and Replace.

Tools in this guide

More guides

How to Open HEIC Files on WindowsHow to Reduce PDF File SizeHow to Remove Location Data from PhotosHow to Extract Audio from a VideoHow to Make a Wi-Fi QR CodeHow to Sign a PDFHow to Verify a File Checksum (SHA-256)PNG vs JPG vs WebP: Which Image Format to UseHow to Merge PDF FilesHow to Copy Text from an ImageHow to Convert JPG to PDFHow to Convert a PDF to JPGHow to Split a PDF or Extract PagesHow to Rotate a PDF PermanentlyHow to Add Page Numbers to a PDFHow to Watermark a PDFHow to Convert HEIC to JPG on a MacHow to Convert WebP to JPGHow to Reduce Image File SizeHow to Convert a Video to GIFHow to Convert WAV to MP3How to Create a Strong PasswordHow to Convert Celsius to FahrenheitGB vs GiB: Why Your Drive Shows Less SpaceHow to Calculate PercentagesHow to Calculate the Number of Days Between Two DatesWhat Is a Unix Timestamp?How to Compare Two Text FilesHow to Count Words in a DocumentHow to Scan a QR Code from a Screenshot or ImageWhat Is a Hash? MD5, SHA-1 and SHA-256 ExplainedHow to Compress a Photo to 20 KB (or Any Size)How to Remove the Background From a PhotoHow to Test Your MicrophoneHow to Check a Screen for Dead PixelsHow to Record Your ScreenHow to Make a Ringtone for iPhoneHow to Compress a Video to Send ItHow to Remove a Password From a PDFHow to Password Protect a PDFHow to Fill In a PDF FormHow to Convert a PDF to WordHow to Blur a Face in a PhotoHow to Calculate Your BMIHow to Calculate a Mortgage PaymentHow to Schedule a Meeting Across Time ZonesWhat Is a Cron Expression?How to Reverse Complement a DNA SequenceHow to Translate DNA to ProteinHow to Convert GenBank to FASTAHow to Find Restriction Sites in a DNA SequenceHow to Align Two DNA or Protein SequencesHow to Design and Check PCR PrimersHow to Calculate Molar MassHow to Balance a Chemical EquationHow to Make a Solution of a Given MolarityHow to Calculate a Dilution (C1V1 = C2V2)How to Calculate pHHow to Calculate DNA Concentration From A260How to Calculate Insert Amount for a LigationHow to Convert RPM to g (RCF)How to Count Cells With a HemocytometerHow to Use a Punnett SquareHow to Make a Budget With the 50/30/20 RuleDebt Snowball vs Debt AvalancheHow Much Do I Need to Retire?How to Convert Salary to Hourly PayProfit Margin vs MarkupHow to Calculate VAT and Sales TaxHow to Make an InvoiceHow Much House Can I Afford?How to Read Resistor Color CodesHow to Choose a Resistor for an LEDHow to Calculate Voltage Drop in a CableHow Much Concrete Do I Need?How Much Paint Do I Need?How to Calculate a SubnetSignificant Figures RulesHow Loan Amortization WorksROI vs CAGR: How to Measure an Investment's ReturnHow Inflation Shrinks Your SavingsHow to Calculate Your GPAHow to Calculate a TipMinesweeper Strategy: Patterns and TipsSudoku Strategies for BeginnersHow to Win at 2048Solitaire Strategy: How to Win More GamesHow to Type FasterHEX vs RGB vs HSL ColorsWhat Is Base64 (and URL Encoding)?How to Calculate Half-LifeThe Ideal Gas Law ExplainedHow a Voltage Divider Works555 Timer CalculationsHow to Calculate Roof PitchHow to Calculate Board FeetDNA and Protein Sequence Statistics Explained