editing:search:regexp

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
editing:search:regexp [2013/11/07 01:57] – external edit 127.0.0.1editing:search:regexp [2018/01/10 20:42] (current) – external edit 127.0.0.1
Line 1: Line 1:
 ====== How to Use Regular Expressions ====== ====== How to Use Regular Expressions ======
  
-A regular expression is a search string that uses special characters to match patterns of text. You can use them asa with the Find command, as with the Replace command in conjunction with replacement expressions.+A regular expression is a search string that uses special characters to match patterns of text. You can use them as with the Find command, as with the Replace command in conjunction with replacement expressions.
  
 ===== Summary of regular expressions: ===== ===== Summary of regular expressions: =====
Line 20: Line 20:
 |\<|Match beginning of a word| |\<|Match beginning of a word|
 |\>|Match end of a word| |\>|Match end of a word|
-|\x##|Match character with ASCII code #(hex)| +|\x%%##%%|Match character with ASCII code %%#%% (hex)| 
-|\x####|Match Unicode character with ASCII code #### (hex)|+|\x####|Match Unicode character with ASCII code %%##%% (hex)|
 |\o###|Match ascii code| |\o###|Match ascii code|
 |\a|Match \a| |\a|Match \a|