@Moe
After i few hours reading and testing i finally achieve my target. From what you give me, and reading, for now i understand how to apply the regex() in MC, but still more to learn. Anyway thank you for the help, really grateful for this.
So testing that site and find a way to group the info from the field i achieve this:
Using album from Selena Gomez - Stars Dance
Field:
2013-CD - HOLLYWOOD (1035665) : Stars Dance
2013-CD - Hollywood (8729502) : Stars Dance
2013-CD - Hollywood (8729667) : Stars Dance
2013-Enhanced CD - Hollywood (001805392) : Stars Dance
2013-Digital - Hollywood () : Stars Dance
2013-Digital - Hollywood () : Stars Dance [Amazon Exclusive]
2015-CD - (5032456) : Stars Dance
And the regex expression from that site is:
^(\d{4})\-(\D+)\s\-\s(\w*)\s\((\d*)
Translate in MC:
regex([FIELD INFO],/#.(\d{4})\-(\D+)\s\-\s(\w*)\s\((\d*)#/,-1, 0)[R1] where R1=Year
regex([FIELD INFO],/#.(\d{4})\-(\D+)\s\-\s(\w*)\s\((\d*)#/,-1, 0)[R2] where R2=Format
regex([FIELD INFO],/#.(\d{4})\-(\D+)\s\-\s(\w*)\s\((\d*)#/,-1, 0)[R3] where R3=Label
regex([FIELD INFO],/#.(\d{4})\-(\D+)\s\-\s(\w*)\s\((\d*)#/,-1, 0)[R4] where R4=Catalog
Again, Thank You!