Answers for "how to find letter and replace in string shell script"

1

HOW TO REPLACE A CHARACTER FROM A STRING IN BASH

string="abc"
final=${string//[a]/b}

echo $final
Posted by: Guest on May-13-2021

Code answers related to "how to find letter and replace in string shell script"

Browse Popular Code Answers by Language