Skip to content

Instantly share code, notes, and snippets.

@jokester
Created August 6, 2012 08:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jokester/3272325 to your computer and use it in GitHub Desktop.
Save jokester/3272325 to your computer and use it in GitHub Desktop.
thread7632 @ script.yssy.bbs
@cases=(
'\\040==case1',
'\\\\040==case2',
'\\\\\\040==case3',
'\\\\\\\\040==case4',
'\\\\\\\\\\040==case5'
);
for(@cases){
s/^((\\\\)*)\\040/ /g and print"$_\n";
}
#=>
#==case1
#\\ ==case3
#\\\\ ==case5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment