Notepad++ Regular Expression Cheat Sheet



regex in notepad++

  1. Notepad++ Regex Reference

Searching a string using the ‘Find‘ or ‘Find & Replace‘ function in text editors highlights the relevant match (e.g. searching ‘le‘ highlights it inside words such as ‘apple‘, ‘please’ etc). However, some advanced editors such as Notepad++ (I mention Notepad++ in my examples since its my favourite so far!) supports the use of regex, which recently saved me hours of manually replacing strings and numeric values in files containing HTML and JacaScript codes.

Notepad++ Regular Expression Cheat Sheet

This cheatsheet guides you through stringr’s functions for manipulating strings. The back page provides a concise reference to regular expresssions, a mini-language for describing, finding, and matching patterns in strings. Updated October 17. Notepad: A guide to using regular expressions and extended, Searching a string using the 'Find' or 'Find & Replace' function in text editors from Normal to Regular expression in your Find or Find & Replace dialogue box. Find and replace text using regular expressions. When you want to search and replace specific patterns of text, use regular expressions. Regular expressions capture things written between round brackets (and ). Brackets that are to be found in the text being searched must be escaped as (and ). In the replacement expression the 1 and 2 etc are replaced by the corresponding capture expression. Understanding RegEx with Notepad, Replace with edit box with dropdown history: this is the text that will The regular expression i flag will override this checkbox, So, I'm trying to use regular expression to search a uppercase followed by two lowercase letters. I succeeded in doing so, by using the expression (.)(A-Z)(a-z)(a-z) But I.


Regex characters can be used to create advanced matching criteria. The following table introduces some of them with practical examples. But before starting make sure that you change the Search Mode from Normal to Regular expression in your Find or Find & Replace dialogue box.

  • [ ]
  • The square brackets can be used to match ONE of multiple characters. For instance, [abc] matches any of the characters a, b or c. Hence, b[eo]n will match words like ben and bon, but not been or beon. Ranges can also be used, [a-z] is any lower case character and so on.

  • ^
  • The caret can be used inside the square brackets to exclude characters from the match. For instance, hell[^o] means the string ‘hell’ will be ignored if followed by the letter ‘o’. Another example is [^A-Za-z] which will exclude all alphabetic characters.
    However, if not placed inside a set, ^ can be used to matches the start of a line.

  • $
  • This matches the end of a line.

  • .
  • The period or dot matches any character.

  • d
  • Matches any single digit.

  • w
  • Matches any single alphanumeric characters or underscore.

  • s
  • Matches whitespaces including tabs and line breaks.

  • *
  • The asterisk or star sign matches 0 or more times. For example, Ba*m matches Bm , Bam , Baam etc.

  • +
  • The plus sign matches 1 or more times. For example, lo+l matches lol , lool , loool etc.

  • <
  • Matches the start of a word. For example, < directly followed by 'sh' matches 'she' but does not matches 'wish'.

  • >
  • Matches the end of a word. For example, sh> matches ‘wish’ and does not matches ‘she’.

  • ( )
  • The round brackets can be used in the Find & Replace function to tag a match. tagged matches can then be used in replace with 1, 2 etc.
    For example, If you write 123xxxRRR in the search and 1231HHH in the ‘Replace with’ filed, the result will be: 123xxxHHH.

  • The backslash can be used to escape regex characters. For example to match 1+1=2, the correct regex is 1+1=2. Otherwise, the plus sign will have a special meaning.

Notepad++ regular expression cheat sheet pdf

Further, the following two examples should be giving you a better idea of how to use regex in your editor:

Notepad++ Regex Reference

  • Find: Win([0-9]+) Replace with: Windows1
  • Will search for strings like Win2000, Win2003 and changes them to Windows2000, Windows2003…

  • Find: [a-z]+(dd)> Replace with: Windows1
  • Will search for all alphanumerics followed by 2 digits only at the end such as Win98 and Win07 and changes them to Windows98, Windows07…