Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Learning AWK Programming
Learning AWK Programming

Learning AWK Programming: A fast, and simple cutting-edge utility for text-processing on the Unix-like environment

eBook
$9.99 $35.99
Paperback
$43.99
Subscription
Free Trial
Renews at $19.99p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Table of content icon View table of contents Preview book icon Preview Book

Learning AWK Programming

Working with Regular Expressions

AWK is a pattern-matching language. It searches for a pattern in a file and, upon finding the corresponding match, it performs the file's action on the input line. This pattern could consist of fixed strings or a pattern of text. This variable content or pattern is generally searched for with the help of regular expressions. Hence, regular expressions form a very important part of AWK programming language. In this chapter, we will look at regular expressions and how they are handled with AWK.

In this chapter, we will cover the following:

  • Regular expressions and their usage in AWK
  • The basic regular expression construct
  • Understanding the metacharacters of regular expression
  • The precedence of regular expressions
  • GAWK-specific regular expressions
  • Case-sensitive matching
  • Escape sequences

Introduction to regular expressions

In this section, you will learn about regular expressions and why we use them. Then we will discuss the usage of regular expressions in AWK.

What is a regular expression?

A regular expression, or regexpr, is a set of characters used to describe a pattern. A regular expression is generally used to match lines in a file that contain a particular pattern. Many Unix utilities operate on plain text files line by line, such as grep, sed, and awk. Regular expressions search for a pattern on a single line in a file.

A regular expression doesn't search for a pattern that begins on one line and ends on another. Other programming languages may support this, notably Perl.

...

Basic regular expression construct

Regular expressions are made up of two types of characters: normal text characters, called literals, and special characters, such as the asterisk (*, +, ?, .), called metacharacters. There are times when you want to match a metacharacter as a literal character. In such cases, we prefix that metacharacter with a backslash (\), which is called an escape sequence.

The basic regular expression construct can be summarized as follows:

Here is the list of metacharacters, also known as special characters, that are used in building regular expressions:

\ ^ $ . [ ] | ( ) * + ?

The following table lists the remaining elements that are used in building a basic regular expression, apart from the metacharacters mentioned before:

Literal

A literal character (non-metacharacter ), such as A, that matches itself.

Escape...

Understanding regular expression metacharacters

When we use special characters in regular expressions, they are called metacharacters because they have a special meaning. They enhance the flexibility, power, and usage of regular expressions. Now, we will discuss the list of metacharacters in regular expressions. All characters, that are not either metacharacters or escape sequences, match themselves in regular expressions. Let's understand each of them in detail.

Quoted metacharacter

A regular expression consisting of a literal or character (letter or digit) is a basic regular expression that matches itself. Sometimes, if we need to use the literal meaning of a metacharacter in a regular expression, we precede it with...

Precedence in regular expressions

In regular expressions, the '|' alternation operator has the lowest precedence, then concatenation, followed by the +, *, and ? repetition operations as well as brackets, '{' and '}'. As in arithmetic expressions, operators of higher precedence are done before lower ones. Also, parentheses can change how operators are grouped. Due to these conventions, parentheses are often omitted, as follows:

$ awk '/Jane|Emily/' emp.dat is same as
$ awk '/(Jane)|(Emily)/' emp.dat

The output on execution of the preceding code is as follows:

Jane    Kaur    9837432312  jane@gmail.com      F   hr      1800
Emily Kaur 8826175812 emily@gmail.com F Ops 2100

In POSIX, AWK, and GAWK, the '*', '+', and '?' operators stand for themselves when there is nothing in the regular...

GAWK-specific regular expression operators

GAWK has some more regular expression operators, in addition to those we've already discussed. The operators described in this section are specific to GAWK and are not available in other AWK implementations. These are basically shorthand character classes that are frequently used, and most of them deal with word matching (here, word refers to a sequence of one or more letters, digits, or underscores). We access them by using the escape character, '\', followed by a letter (here, the escape character adds special meaning to them instead of taking it away).

Let's create a file to practice GAWK-only operators:

vi  gopr.txt
start
bigstarting
starting
start end
white space example
e d
end
e_d
e1d
e;d
eNd
white space example with tab
e d
...

Case-sensitive matching

In bracket expressions, we can use both lowercase and uppercase characters to match the characters for case-insensitive results, but the same is not true for other regular expressions. However, this becomes difficult if you have to match to many characters. Here comes the two built-in string functions of AWK, tolower() and toupper(). Using these two functions, we can perform case-insensitive match operations.

For example, to match the first name 'John' of an employee in the emp.dat file, we can perform a case-insensitive match using the tolower() function, as follows:

$ awk 'tolower($1) ~ /john/' emp.dat

The output on execution of this code is as follows:

John    Kapur   9911556789  john@gmail.com      M   hr      2200

Another way to perform a case-insensitive match operation is by setting the IGNORECASE bash variable value to TRUE.

...

Escape sequences

When using regular expressions and strings, certain characters cannot be included literally in string constants ("hello") or regular expression constants (/hello/). To specify the characters for which there may not be other notations, they are represented as escape sequences. Escape sequences begin with a backslash ('\'). For example, it can represent that an \n newline character is used, which otherwise cannot be represented in strings or regular expressions. Similarly, \b stands for backspace, \t stands for tab, and \/ represents a forward slash. They are quite useful in generating formatted output.

For example, to insert a new line after each line of the emp.dat file, we can use the \n escape sequence, as follows:

$ awk '{ print $0"\n" }' emp.dat

The output on execution of the given code is as follows:

Jack    Singh ...

Summary

In this chapter, we learned about regular expressions. We learned the regular expression construct using literals and metacharacters. Then, we learned the usage of various different regular expression metacharacters, which are also known as regular expression operators. Finally, we covered some GAWK-specific regular expression metacharacter usage and understood escape sequences and their role in regular expressions.

In the next chapter, we will learn about handling AWK variables and constants while writing AWK programs.

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • -Master the fastest and most elegant big data munging language
  • -Implement text processing and pattern matching using the advanced features of AWK and GAWK
  • -Implement debugging and inter-process communication using GAWK

Description

AWK is one of the most primitive and powerful utilities which exists in all Unix and Unix-like distributions. It is used as a command-line utility when performing a basic text-processing operation, and as programming language when dealing with complex text-processing and mining tasks. With this book, you will have the required expertise to practice advanced AWK programming in real-life examples. The book starts off with an introduction to AWK essentials. You will then be introduced to regular expressions, AWK variables and constants, arrays and AWK functions and more. The book then delves deeper into more complex tasks, such as printing formatted output in AWK, control flow statements, GNU's implementation of AWK covering the advanced features of GNU AWK, such as network communication, debugging, and inter-process communication in the GAWK programming language which is not easily possible with AWK. By the end of this book, the reader will have worked on the practical implementation of text processing and pattern matching using AWK to perform routine tasks.

Who is this book for?

This book is for developers or analysts who are inclined to learn how to do text processing and data extraction in a Unix-like environment. Basic understanding of Linux operating system and shell scripting will help you to get the most out of the book.

What you will learn

  • -Create and use different expressions and control flow statements in AWK
  • -Use Regular Expressions with AWK for effective text-processing
  • -Use built-in and user-defined variables to write AWK programs
  • -Use redirections in AWK programs and create structured reports
  • -Handle non-decimal input, 2-way inter-process communication with Gawk
  • -Create small scripts to reformat data to match patterns and process texts

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Mar 26, 2018
Length: 416 pages
Edition : 1st
Language : English
ISBN-13 : 9781788397087
Category :
Languages :
Concepts :
Tools :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Product Details

Publication date : Mar 26, 2018
Length: 416 pages
Edition : 1st
Language : English
ISBN-13 : 9781788397087
Category :
Languages :
Concepts :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total $ 131.97
Learning AWK Programming
$43.99
Mastering Linux Shell Scripting
$38.99
Learning Linux Shell Scripting
$48.99
Total $ 131.97 Stars icon
Banner background image

Table of Contents

10 Chapters
Getting Started with AWK Programming Chevron down icon Chevron up icon
Working with Regular Expressions Chevron down icon Chevron up icon
AWK Variables and Constants Chevron down icon Chevron up icon
Working with Arrays in AWK Chevron down icon Chevron up icon
Printing Output in AWK Chevron down icon Chevron up icon
AWK Expressions Chevron down icon Chevron up icon
AWK Control Flow Statements Chevron down icon Chevron up icon
AWK Functions Chevron down icon Chevron up icon
GNU's Implementation of AWK – GAWK (GNU AWK) Chevron down icon Chevron up icon
Practical Implementation of AWK Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Full star icon Full star icon Full star icon 5
(4 Ratings)
5 star 100%
4 star 0%
3 star 0%
2 star 0%
1 star 0%
Robert Bednarczyk Feb 19, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
The awk language is a much-needed programming language for managing linux systems. The book teaches very well how to use this language correctly and effectively.
Feefo Verified review Feefo
Amazon Customer Jun 22, 2018
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This book is seriously amazing! You will be up and programming with AWK in no time. Very Very good book - esp. for Linux Systems Administrators lol
Amazon Verified review Amazon
software_craftsman Jun 12, 2019
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This is the AWK Book that I have been waiting to read for many years. I finally feel that I have mastered Awk Programming instead of whipping up little one liners. This will teach you many concepts about the shell as well.
Amazon Verified review Amazon
Dr Rick Dec 06, 2020
Full star icon Full star icon Full star icon Full star icon Full star icon 5
A very thorough and gentle way to get up to speed with Awk.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.