Home Posts

Posts In #sed

Text Processing with RegEx

by Alejandra López Espino | Mar 9 2024 · 6 min read
#regex #bash #Linux #text-edit #command-line #sed #awk #tutorial

Regular expressions (regex) are powerful string matching tools that use pattern-matching techniques for complex searching and manipulating. They occur across many programming languages, but also dominate command-line text-processing tools such as sed and awk in Unix-like systems. What are Regular Expressions? Regular expressions are a sequence of characters representing a search pattern. This pattern can be used within string searching algorithms to “find” or “find and …
Read More…