我需要形成一個Java正則表達式的開始和LDAP查詢的結束,除去支架的幫助。 它覆蓋的情況是:正則表達式來移除支架開始和結束
1) (|(GROUP=temp1)(GROUP=temp2)(GROUP=temp3)(GROUP=temp4))
to -> (GROUP=temp1)(GROUP=temp2)(GROUP=temp3)(GROUP=temp4)
basically, remove brackets starting and ending if only Pipe (|) symbol is present..
2) (GROUP=temp1) or (Group=*) -> should not do any changes
的幫助感激
您是否嘗試過使用這樣的:http://www.regexplanet.com/advanced/java/index.html? – Brydenr
我使用\((+)\),但它替換的(GROUP = temp1目錄)或(組= *)與GROUP = temp1中和組= *,這我不want..i只需要執行時,有是正則表達式中的管道(|)..可能正在做字符串包含將實現此.. ..? – marc