Created
October 4, 2012 20:26
-
-
Save shiffman/3836206 to your computer and use it in GitHub Desktop.
PVector regex
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[source,java] | |
---- | |
// I do not want to match this instance of PVector. | |
---- | |
I want to match this instance of PVector. | |
[source,java] | |
---- | |
// Do not match when PVector appears in here. | |
---- | |
And this PVector. I want to match this PVector! | |
[source,java] | |
---- | |
// But not PVector in here! | |
PVector v; | |
---- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment