-
Notifications
You must be signed in to change notification settings - Fork 37
/
text-utils.sh
204 lines (146 loc) · 5.9 KB
/
text-utils.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
#!/bin/bash
# text-utils.sh -- utilities for processing text
#
# Copyright 2006-2022 Alan K. Stebbens <[email protected]>
TEXT_UTILS_VERSION="text-utils.sh v1.8"
[[ "$TEXT_UTILS_SH" = "$TEXT_UTILS_VERSION" ]] && return
TEXT_UTILS_SH="$TEXT_UTILS_VERSION"
source help-util.sh
source arg-utils.sh
text_help() {
help_pager <<'EOF'
str_len STRING # string length (multi-byte unaware)
mstr_len STRING # string length (multi-byte aware)
byte_len STRING # byte length (multi-byte unaware)
char_len STRING # character length (possibly multi-byte)
lowercase STRING # return the lowercase string
uppercase STRING # return the uppercase string
trim STRING # trim blanks surrounding string
ltrim STRING # trim left-side blanks from STRING
rtrim STRING # trim right-side blanks from STRING
squeeze STRING # squeeze multiple blanks in string
split_str STRING [SEP] # split STRING using SEP [default: ' \t']
split_input [SEP] # split STDIN using SEP [default: ' \t']
args2lines [ARG ..] # echo each ARG (or STDIN) on a separate line
sort_str2lines "STRING .." # output the sorted words in STRING on separate lines
join_lines # join lines on STDIN together with newlines
sort_str [WORDS TO BE SORTED] # return the sorted list of WORDS
str_sort [WORDS TO BE SORTED] # an alias for 'sort_str'
html_encode [STRING] # encode STRING (or STDIN) for html
url_encode [STRING] # encode STRING (or STDIN) for url
html_decode [STRING] # decode STRING (or STDIN) from HTML encoding
url_decode [STRING] # decode STRING (or STDIN) from URL encoding
Most functions, except 'split_str' and 'sort_str', can be used in a pipe
without an argument. For example:
echo "This is a string" | uppercase => "THIS IS A STRING"
echo ""
html_encode <input-file >html-file
EOF
}
help_text() { text_help ; }
str_len() { __args_or_stdin "$@" | wc -c ; }
mstr_len() { __args_or_stdin "$@" | wc -m ; }
byte_len() { __args_or_stdin "$@" | wc -c ; }
char_len() { __args_or_stdin "$@" | wc -m ; }
lowercase() { __args_or_stdin "$@" | tr 'A-Z' 'a-z' ; }
uppercase() { __args_or_stdin "$@" | tr 'a-z' 'A-Z' ; }
ltrim() { __args_or_stdin "$@" | sed -Ee 's/^[[:space:]]*//' ; }
rtrim() { __args_or_stdin "$@" | sed -Ee 's/[[:space:]]*$//' ; }
trim() { __args_or_stdin "$@" | sed -Ee 's/^[[:space:]]*//' -e 's/[[:space:]]*$//' ; }
squeeze() { __args_or_stdin "$@" | tr '\t' ' ' | tr -s ' ' ; }
# split_str "STRING" [SEP]
#
# outputs the split of STRING into parts using a separator SEP (defaulting
# to space/tab).
#
# If SEP is anything but " ", care is taken to avoid removing whitespace from
# the split values.
#
# SEP can be multiple characters; for example ' ,' will split using both space
# and comma. By default, splitting is done by tabs.
split_str() {
echo "$1" | split_input "$2"
}
__split_str() { split_str "$@" ; }
# split_input [SEP]
#
# Splits STDIN by SEP, or by whitespace if SEP not given
#
split_input() {
local sep="${1:-$' \t'}"
tr "$sep" '\n' |
sed -Ee 's/^(.*[ ,?*].*)$/"\1"/' |
tr '\n' ' '
}
# args2lines ARG ..
#
# echo each ARG on a separate line
args2lines() { __args2lines "$@" ; }
__args2lines() { args_or_stdin "$@" | tr ' \t' '\n' ; }
# sort_str2lines "STRING ..." -- output the words of STRING on separate lines, sorted
sort_str2lines() {
help_args_func text_help $# 1 || return
__sort_str2lines "$@"
}
__sort_str2lines() { __args2lines "$@" | sort -f ; }
# join_lines -- join lines on STDIN together with newlines
join_lines() { __join_lines "$@" ; }
__join_lines() { tr '\n' ' ' | sed -e 's/ $//' ; }
# sort_str [WORDS TO BE SORTED]
# str_sort
sort_str() {
help_args_func text_help $# 1 || return
__sort_str "$@"
}
str_sort() { sort_str "$@" ; }
__str_sort() { __sort_str "$@" ; }
__sort_str() { __sort_str2lines "$@" | __join_lines ; }
# url_encode [STRING] -- encode STRING for URLs
# url_encode -- encode STDIN for URLs
# Note: must convert % first, otherwise the other entities will
# get double-converted.
url_encode() {
__args_or_stdin "$@" |
sed -Ee "\
s/\%/%25/g ;
s/ /%20/g ; s/\\\$/%24/g ; s/\>/%3E/g ;\
s/#/%23/g ; ; s/\[/%5B/g ;\
s/'/%27/g ; s/\&/%26/g ; s/\]/%5D/g ;\
s/,/%2C/g ; s/\(/%28/g ; s/\^/%5E/g ;\
s/-/%2D/g ; s/\)/%29/g ; s/\`/%60/g ;\
s/=/%3D/g ; s/\*/%2A/g ; s/\{/%7B/g ;\
s/[\]/%5C/g ; s/\+/%2B/g ; s/\|/%7C/g ;\
s/\!/%21/g ; s/\//%2F/g ; s/\}/%7D/g ;\
s/\"/%22/g ; s/\</%3C/g ; s/\~/%7E/g"
}
# url_decode STRING -- decode STRING for urls
# url_decode -- decode STDIN for urls
url_decode() {
__args_or_stdin "$@" |
sed -e "\
s/%20/ /g ; s/%29/)/g ; s/%5B/[/g ;\
s/%21/\!/g ; s/%2A/*/g ; s/%5C/\\\\/g ;\
s/%22/\"/g ; s/%2B/+/g ; s/%5D/]/g ;\
s/%23/\#/g ; s/%2C/,/g ; s/%5E/^/g ;\
s/%24/\$/g ; s/%2D/-/g ; s/%60/\`/g ;\
s/%25/%/g ; s/%2F/\//g ; s/%7B/{/g ;\
s/%26/\&/g ; s/%3C/</g ; s/%7C/|/g ;\
s/%27/'/g ; s/%3D/=/g ; s/%7D/}/g ;\
s/%28/(/g ; s/%3E/>/g ; s/%7E/~/g"
}
# html_encode STRING -- encode STRING for HTML presentation
# html_encode -- encode STDIN for HTML presentation
#
# converts '&' => & '>' => > '<' => <
html_encode() {
__args_or_stdin "$@" |
sed -e "s/\&/\&/g ; s/[<]/\</g ; s/[>]/\>/g"
}
# html_decode STRING -- decode STRING from HTML presentation
# html_decode -- decode STDIN from HTML presentation
html_decode() {
__args_or_stdin "$@" |
sed -Ee "s/\</</g ; s/\>/>/g ; s/\&/\&/g"
}
# end text-utils.sh
# vim: set sw=2 ai