This command will with trim all PREFIX from the STRING.
string trimprefix "--" "--people--"
Would return people--
NOTE: To read content from standard input we use the -i -
option.
echo "--people--" | string -i - trimprefix "--"
Would return people--