Jul 20, 2003 #1 tecknick Programmer Aug 23, 2002 7 AU Hey I am trying to remove the $ sign from some user input. I am using Code: tr/\$// This does not seem to work. Any suggestions. Thanks
Hey I am trying to remove the $ sign from some user input. I am using Code: tr/\$// This does not seem to work. Any suggestions. Thanks
Jul 21, 2003 #2 chazoid Technical User Dec 2, 2002 300 US use this instead: s/\$//g; Upvote 0 Downvote