Regex to match the following term

I want the data within CHANNEL (XYZ) - > XYZ to be highlighted

Input
CHANNEL (GBL PG.EUUFX01D)
ALTDATE (2023-06-07)

Highligted Data
CHANNEL (GBL PG.EUUFX01D)
ALTDATE (2023-06-07)

GBL PG.EUUFX01D → To be highligted

([A-Z\s.0-9]+)
image

Is this the required output u expect?

Please Let me know

Regards,

Works as needed

lets consider this as input

CHANNEL (GBL PG.EUUFX01D)

ALTDATE (GBL PG.EUUFX01D)

I just want the value with CHANNEL prefix to be highlighted not for ALTDELETE

(?<=CHANNEL ()[A-Z\s.0-9]+

FOLLOW THIS REGEX

image

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.