Split string with bash with symbol

awk, bash, sed, string

Solution

Using Parameter Expansion:

str='test1@test2'
echo "${str#*@}"

- The `#` character says Remove the smallest prefix of the expansion matching the pattern.

- The `%` character means Remove the smallest suffix of the expansion matching the pattern. (So you can do `"${str%@*}"` to get the `"test1"` part.)

- The `/` character means Remove the smallest and first substring of the expansion matching the following pattern. Bash has it, but it's not POSIX.

If you double the pattern character it matches greedily.

- `##` means Remove the largest prefix of the expansion matching the pattern.

- `%%` means Remove the largest suffix of the expansion matching the pattern.

- `//` means Remove all substrings of the expansion matching the pattern.

Problem

For example, I have a string: `test1@test2`. I need to get the `test2` part of this string. How can I do this with bash?

Original source

Related problems