aboutsummaryrefslogtreecommitdiff
path: root/src/dotnet/scripts/string-helpers.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/dotnet/scripts/string-helpers.sh')
-rw-r--r--src/dotnet/scripts/string-helpers.sh42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/dotnet/scripts/string-helpers.sh b/src/dotnet/scripts/string-helpers.sh
new file mode 100644
index 0000000..35b4017
--- /dev/null
+++ b/src/dotnet/scripts/string-helpers.sh
@@ -0,0 +1,42 @@
+#!/bin/bash
+#-------------------------------------------------------------------------------------------------------------
+# Copyright (c) Microsoft Corporation. All rights reserved.
+# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information.
+#-------------------------------------------------------------------------------------------------------------
+#
+# Docs: https://github.com/devcontainers/features/tree/main/src/dotnet
+# Maintainer: The Dev Container spec maintainers
+
+# Removes leading and trailing whitespace from an input string
+# Usage: trim_whitespace <text>
+trim_whitespace() {
+ text="$1"
+
+ # Remove leading spaces
+ while [ "${text:0:1}" == " " ]; do
+ text="${text:1}"
+ done
+
+ # Remove trailing spaces
+ while [ "${text: -1}" == " " ]; do
+ text="${text:0:-1}"
+ done
+
+ echo "$text"
+}
+
+# Splits comma-separated values into an array while ignoring empty entries
+# Usage: split_csv <comma-separated-values>
+split_csv() {
+ local -a values=()
+ while IFS="," read -ra entries; do
+ for entry in "${entries[@]}"; do
+ entry="$(trim_whitespace "$entry")"
+ if [ -n "$entry" ]; then
+ values+=("$entry")
+ fi
+ done
+ done <<< "$1"
+
+ echo "${values[@]}"
+} \ No newline at end of file