I'm a bit confused by this from the help book:
A regular expression which is used to identify the portion of text to be styled. Example: "\<(true|false)\>".
How is this different from: "(true|false)"
in other words what are the < and > doing in the regex?
James.
According to James Spahr:
A regular expression which is used to identify the portion of text to be styled. Example: "\<(true|false)\>".
How is this different from: "(true|false)"
in other words what are the < and > doing in the regex?
Word boundaries I'd say, that way you highlight
foo = true
but not
bar = sad_but_true