mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 15:37:24 +00:00
5b0996fd80
pcre2_substitute() now sets the output buffer length to PCRE2_UNSET (~0) if the output buffer is determined to be too small. This change keeps track of the buffer size separately where pcre2 can't touch it. A better fix would be to let pcre2 tell fish what size buffer it needs. This can be done with PCRE2_SUBSTITUTE_OVERFLOW_LENGTH, but this requires pcre2 10.21 or later (released January 12), which may be too new to introduce as a dependency at this point. Fixes #2743
65 lines
1.3 KiB
Text
65 lines
1.3 KiB
Text
# tests for string builtin
|
|
# mostly taken from examples
|
|
string length 'hello, world'
|
|
|
|
string length -q ""; and echo not zero length
|
|
|
|
string sub --length 2 abcde
|
|
|
|
string sub -s 2 -l 2 abcde
|
|
|
|
string sub --start=-2 abcde
|
|
|
|
string split . example.com
|
|
|
|
string split -r -m1 / /usr/local/bin/fish
|
|
|
|
string split '' abc
|
|
|
|
seq 3 | string join ...
|
|
|
|
echo ' abc '
|
|
string trim ' abc '
|
|
|
|
string trim --right --chars=yz xyzzy zany
|
|
|
|
echo \x07 | string escape
|
|
|
|
string match '?' a
|
|
|
|
string match 'a*b' axxb
|
|
|
|
string match -i 'a??B' Axxb
|
|
|
|
echo 'ok?' | string match '*\?'
|
|
|
|
string match -r 'cat|dog|fish' 'nice dog'
|
|
|
|
string match -r '(\d\d?):(\d\d):(\d\d)' 2:34:56
|
|
|
|
string match -r '^(\w{2,4})\g1$' papa mud murmur
|
|
|
|
string match -r -a -n at ratatat
|
|
|
|
string match -r -i '0x[0-9a-f]{1,8}' 'int magic = 0xBadC0de;'
|
|
|
|
string replace is was 'blue is my favorite'
|
|
|
|
string replace 3rd last 1st 2nd 3rd
|
|
|
|
string replace -a ' ' _ 'spaces to underscores'
|
|
|
|
string replace -r -a '[^\d.]+' ' ' '0 one two 3.14 four 5x'
|
|
|
|
string replace -r '(\w+)\s+(\w+)' '$2 $1 $$' 'left right'
|
|
|
|
string replace -r '\s*newline\s*' '\n' 'put a newline here'
|
|
|
|
string replace -r -a '(\w)' '$1$1' ab
|
|
|
|
# test some failure cases
|
|
string match -r '[' 'a[sd' 2>/dev/null; or echo "invalid expression error"
|
|
|
|
string invalidarg 2>/dev/null; or echo "invalid argument error"
|
|
|
|
string length 2>/dev/null; or echo "missing argument returns 0"
|