Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. R:
  2. gsub("|[][!#$%()?*,.:;&<=>@^_`|~.{}/\\\\]","\\1","hi! this* (i[s a~ special? charac^ter* \\removal/ line #of &c%o$d@e",fixed = F)
  3. gsub(" |[][!#$%()?*,.:;<=>@^_`|~.{}/\\\\]","\\1","I(alsoremovesspaces)",fixed = F)
  4.  
  5.  
  6. bash:
  7.  
  8. sed:
  9. echo "hi! this* (i[s a~ special? charac^ter* \\re[m]oval/ line #of &c%od@e" | sed 's/[]\\[!#%(")?*,.:;&<=>@^_`~.{}\\\\\/]//g'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement