There is a string in log file like that :
'AUR HALAA /PART="CMF1_SAS_PROJECT" /ROLE="VR_ANALYST" /TY=C /CAP=S /DEL' (S)
'AUR and /ROLE="" are a constant part
HALAA and VR_ANALYST are inputs
My Regex is : "^'AUR (\\w+) .*? /ROLE=\"(\\w+)\".*$";
But it doesn't work correctly. Could some one show me the correct regex for this sentence please ?