Hello - I am attempting to build an expression to split a string into an array of strings using bullets as delimiters. So, for example...
Input:
• Focus on design, conception, implementation, and evaluation of AI/ML software architectures for solutions classified as medical device according to the current state of art and in compliance with the applicable standards and regulations • Manage and schedule work for software development team of multiple complex projects as well as develop, qualify, and maintain suppliers as partner relationships • Drive conception and implementation of the data interfaces internally at Bayer and between Bayer and external partners for the exchange of sensitive health data in compliance with data protection guidelines and Bayer internal compliance standards
Output:
"Focus on design, conception, implementation, and evaluation of AI/ML software architectures for solutions classified as medical device according to the current state of art and in compliance with the applicable standards and regulations ",
"Manage and schedule work for software development team of multiple complex projects as well as develop, qualify, and maintain suppliers as partner relationships ",
"Drive conception and implementation of the data interfaces internally at Bayer and between Bayer and external partners for the exchange of sensitive health data in compliance with data protection guidelines and Bayer internal compliance standards ",
After a review of our source documents, I'm learning that several types of bullets are being used, including o, •, - , *, and others.
My question is - how do I work these multiple separators into an expression? I used this expression when I thought I only had one delimiter:
split(outputs('JD_-_Remove_Spacing'),'• '), and it worked great...but now I have multiple delimiters. I want to split the string no matter what type of bullet is used. I attempted separating the delimiters with commas like this: split(outputs('JD_-_Remove_Spacing'),'• ', 'o '), but the flow failed. Any suggestions?
Thanks in Advance!