Skip to content

Instantly share code, notes, and snippets.

@maarten00
Created November 5, 2014 15:57
Show Gist options
  • Save maarten00/ca92bdd99fc78cdf24dc to your computer and use it in GitHub Desktop.
Save maarten00/ca92bdd99fc78cdf24dc to your computer and use it in GitHub Desktop.
Regex: Find all @if, @else, @elseif or @endif that are not preceded and postceded by a space
(?<!\s)(@if\(.*\)|@elseif\(.*\)|@else|@endif)(?!\s)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment