Tag: Strings
Browse all articles, tutorials, and guides about Strings
Posts
How to Check if String Contains a Substring in Terraform Interpolation?
Learn how to check if a string contains a substring in Terraform using interpolation functions like `contains` and `regex`.
How to Loop Through an Array of Strings in Bash
Learn various methods to iterate through string arrays in Bash, including indexed arrays, associative arrays, and advanced looping techniques with practical examples.
How to Concatenate String Variables in Bash
Learn multiple ways to combine string variables in Bash scripts, from simple concatenation to complex string operations with practical examples.
How to Extract Filename and Extension in Bash
Learn multiple methods to extract filenames, extensions, and directory paths from file paths in Bash using parameter expansion and basename commands.
How to Split a String on a Delimiter in Bash
Learn multiple methods to split strings using delimiters in Bash, including IFS, parameter expansion, and array techniques with practical examples.