prxchange('s/_/ /i',-1,str); The value i indicates to ignore the case of the character in the expression. For this particular example i can be ignored. The value -1 indicates that the matching pattern replacement should happen till the end of string is reached. If 1 is used the replacement ends when the first match is found.
... View more