mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-09 13:10:40 +00:00
18 lines
537 B
Fish
18 lines
537 B
Fish
|
# Extract string between left and right separators of variable length.
|
||
|
# @params <left-sep> [<right-sep>] <string>
|
||
|
function msg.util.str.get
|
||
|
set -l left $argv[1]
|
||
|
set -l right $argv[1]
|
||
|
set -l string $argv[2]
|
||
|
|
||
|
if [ (count $argv) -gt 2 ]
|
||
|
set right $argv[2]
|
||
|
set string $argv[3]
|
||
|
end
|
||
|
|
||
|
set -l len (printf $left | awk '{print length}')
|
||
|
# Match between outermost left / right separators.
|
||
|
printf $string | sed "s/[^\\$left]*\(\\$left.*\\$right\)*/\1/g" | \
|
||
|
sed "s/^.\{$len\}\(.*\).\{$len\}\$/\1/"
|
||
|
end
|