I stuck at a problem where, i need to split a sentence containing multiple sentences has to be split at comma delimiter. The problem am facing is that, even the string also has commas which should not be considered as delimiter. The commas as values are present at random, so cannot have regex approach either. I think am going have to use NLP approach for this.
I tried regex and pattern matching but it is not able to handle all the cases, hence I think am going to have to go with NLP approach
Here is an example for input :- 'Reduction of manual triaging effort, Built browser based test application, Real-Time Monitoring of Audio and Video frame by frame,Test Assessment, Test Design, Test Optimization, Test Report and Test Bench creation, Providing high-level and low-level requirements for Automation of key modules, Test Analysis and Use-case generation and Scope identification for the CFRs, Network protocols testing and Security testing using in-home solutions and external third party tools, Effective Escape Defect Analysis strategy'
Output:- [Reduction of manual triaging effort, Built browser based test application, Real-Time Monitoring of Audio and Video frame by frame, Test Assessment, Test Design, Test Optimization, Test Report and Test Bench creation, Providing high-level and low-level requirements for Automation of key modules, Test Analysis and Use-case generation and Scope identification for the CFRs, Network protocols testing and Security testing using in-home solutions and external third party tools, Effective Escape Defect Analysis strategy']