Non-capturing parenthesis'

Non-capturing parenthesis'

1
NewbieNewbie
1

    Dec 19, 2005#1

    Are the any plans to add support for non-capturing parenthesis' in the unix mode for regular expressions? Normally in regex you can write ?: just after the start parenthesis to make the parenthesis non-capturing and hence not be available as a backreference. This is nice for advanced regular expressions and logical grouping.

    I'm running UE 11.20+4

    Thanks.

    5
    NewbieNewbie
    5

      Jan 05, 2006#2

      Use this for parenthesis:

      ([~(])

      and

      ([~)])

      It worked for me, Unix Syntax.