in reply to Re: Delete "/" in a string
in thread Delete "/" in a string

The "tr" operator is slightly more efficient than the s//, and serves the purpose well in this case.

Although it probably does not make a big difference in this case, the tr/// operator can be considerably more efficient than s///.