johandepauw
IS-IT--Management
How can I remove all slashes within a string ?
For example :
1/23456/78/999 needs to become
12345678999
For example :
1/23456/78/999 needs to become
12345678999
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[blue]master #[/blue] cat inputfile
1/23456/78/999
[blue]master #[/blue] awk '{gsub(/\//,"")}1' inputfile > outputfile
[blue]master #[/blue] cat outputfile
12345678999