public inbox for network@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH 1/2] util: add normalize function
@ 2017-08-18 11:45 Jonatan Schlag
  2017-08-18 11:45 ` [PATCH 2/2] wireless: add network feature Jonatan Schlag
  0 siblings, 1 reply; 2+ messages in thread
From: Jonatan Schlag @ 2017-08-18 11:45 UTC (permalink / raw)
  To: network

[-- Attachment #1: Type: text/plain, Size: 691 bytes --]

This function remove all non alpha numerical characters from a string
and substitute this characters with one -

So HELLO%%/$&/)%$%(&&HH becomes hello-hh

Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
---
 src/functions/functions.util | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/src/functions/functions.util b/src/functions/functions.util
index 24e3e66..8df0d86 100644
--- a/src/functions/functions.util
+++ b/src/functions/functions.util
@@ -845,3 +845,13 @@ copy() {
 		return ${EXIT_ERROR}
 	fi
 }
+
+
+normalize() {
+	assert [ $# -eq 1 ]
+
+	local string="${1}"
+
+	string="${string,,}"
+	tr -sc [:alnum:] "-" < <(printf "%s" "${string}")
+}
-- 
2.6.3


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-08-18 11:45 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-18 11:45 [PATCH 1/2] util: add normalize function Jonatan Schlag
2017-08-18 11:45 ` [PATCH 2/2] wireless: add network feature Jonatan Schlag

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox