Help in extracting data from a string

i have names of apple mobiles as String and these are like (APPLE iPhone 13 (Midnight, 128 GB) so i just to get the name till the bracket starts and rest after the bracket(viz. midnight 128 gb)

how can i do that?

Hi @ankur.kaushik ,

Is this what you meant?

Kind Regards,
Ashwin A.K

Hello @ankur.kaushik,

You can use this expression with Regex: (?<=()(.+)(?=)) :slight_smile:

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