-
-
Save lucagervasi/6247e7ce59353f1d5a30d04bd8614f52 to your computer and use it in GitHub Desktop.
ltrim(), rtrim(), and trim() in awk
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function ltrim(s) { sub(/^[ \t\r\n]+/, "", s); return s } | |
| function rtrim(s) { sub(/[ \t\r\n]+$/, "", s); return s } | |
| function trim(s) { return rtrim(ltrim(s)); } | |
| BEGIN { | |
| # whatever | |
| } | |
| { | |
| # whatever | |
| } | |
| END { | |
| # whatever | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment