Guest User

Untitled

a guest
Jun 24th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. blah blah
  2.  
  3. BEGINIGNORE
  4. this stuff should get stripped out
  5. ENDIGNORE
  6.  
  7. more stuff here
  8.  
  9. StringReplace[str, re["BEGINIGNORE[.\s]*ENDIGNORE"]->""]
  10.  
  11. strip[s_String] := StringReplace[s, re@"BEGINIGNORE(.|\n)*ENDIGNORE" -> ""]
  12.  
  13. StringReplace[str, re["BEGINIGNORE(.|\n)*ENDIGNORE"]->""]
  14.  
  15. StringReplace[str, re["BEGINIGNORE(?s).*ENDIGNORE"]->""]
Add Comment
Please, Sign In to add comment