Hi all,
I have different files with naming as follows:
Real estates [Data centre] [SGD, RM]
Real estates [Office] (SGD) reduce ROU
Real estates [Properties] [Part 1 (SOA)] [SGD]
Real estates [Properties] [Part 2 (1541)] [SGD]
Real estates [Properties] [Part 3] [SGD]
I would like to seek your help on extracting the following outputs in this desired manner:
| Real estates | Data centre | [SGD, RM] |
| Real estates | Office | (SGD) reduce ROU |
| Real estates | Properties | [Part 1 (SOA)] [SGD] |
| Real estates | Properties | [Part 2 (1541)] [SGD] |
| Real estates | Properties | [Part 3] [SGD] |
My current Regular Expression (\<\w+\s+\w+\>).(\<\w+\s+\w+\>)*(\[.*\]).*(\[.*\]) is having an issue.
And my formula is Replace(Replace([RegExOut1], "[", ""),"]","")
My current results are as follows:
| Real estates | Data centre | [SGD, RM] |
| | | |
| Real estates | Properties Part 1 (SOA) | [SGD] |
| Real estates | Properties Part 2 (1541) | [SGD] |
| Real estates | Properties Part 3 | [SGD] |
Thank you in advance for your help!