I am trying to write a regex for AvalonEdit.TextEditor
to mark everything after the second |
a certain color.
Example(value should be a color):
action|key|value
I am trying something like this but it doesn't work because I can't specify the group I wanna color.
^[^\|]*\|[^\|]*\|(?P<value>[^\|]*)
Any ideas?