Hi i cant seem to find a way to get below solution
lets say i have a list of text
Intel Xeon Processor E7-4807 6C (1.86GHz 18MB L3 95w 4S) (A123)
Intel Xeon Processor E7-4820 8C (2.00GHz 18MB L3 105w 4S) (B123)
Intel Xeon Processor E7-4830 8C (2.13GHz 24MB L3 105w 4S) (C456)
Intel Xeon Processor E7-4850 10C (2.00GHz 24MB L3 130w 4S) (D789)
Intel Xeon Processor E7-4860 10C (2.26GHz 24MB L3 130w 4S) (EFG456)
Intel Xeon Processor E7-4870 10C (2.40GHz 30MB L3 130w 4S) (ABC123)
i want to find a way to extract the codes in the brackets at the end of the text
expected output:
Intel Xeon Processor E7-4807 6C (1.86GHz 18MB L3 95w 4S) (A123) >> A123 << 4digit
Intel Xeon Processor E7-4820 8C (2.00GHz 18MB L3 105w 4S) (B123) >> B123
Intel Xeon Processor E7-4830 8C (2.13GHz 24MB L3 105w 4S) (C456) >> C456
Intel Xeon Processor E7-4850 10C (2.00GHz 24MB L3 130w 4S) (D789) >> D789
Intel Xeon Processor E7-4860 10C (2.26GHz 24MB L3 130w 4S) (EFG456) >> EFG456 << 6digit
Intel Xeon Processor E7-4870 10C (2.40GHz 30MB L3 130w 4S) (ABC123) >> ABC123
my concern is
1) i cant use =right(xxxx) function because it has inconsistent number of text within the bracket sometimes
2) i cant use search for "(" to extract the text there are other brackets within the text : for eg. (1.86GHz 18MB L3 95w 4S)
Bookmarks