Tag: Strings
Browse all articles, tutorials, and guides about Strings
Posts
⌘K
Linux
2024-12-03|8 min read
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.
Bash
2024-10-22|7 min read
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.
Bash
2024-07-08|7 min read
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.
Bash
2024-06-12|8 min read
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.