2

Is lookbehind and lookaround concept avail in TCL regex engine?

I came across this page, i didn't see any concept and example about lookbehind and lookaround, even when i execute sample program with lookbehind and lookaround concept where i am not getting any match as well.

Donal Fellows
  • 133,037
  • 18
  • 149
  • 215
velpandian
  • 431
  • 4
  • 11
  • 23

1 Answers1

2

Yes to lookahead, no to lookbehind, according to RegexBuddy, if you're using Tcl ARE (Advanced Regular Expressions).

See also http://www.regular-expressions.info/refadv.html and check the "Tcl ARE" dropdown.

Tim Pietzcker
  • 328,213
  • 58
  • 503
  • 561