lets say i have $hget(Table,SomeData) that returns abcde#1234
and i wanna set %sample to abcde#1234 but replacing the # with -
to make it become abcde-1234
how would I $replace that
nvm i figured it out $replace($hget(Table,SomeData).data,$chr(35),$chr(45))
