I have paragraph need to fetch number from them
For example
A ID 12345 has match with the other id 6789.
My output should be:
12345
6789
I ihave more than one para
A ID 12345 has match with the other id 6789.And 34567 matches with requirements 4567 matches with requirements 567 matches with requirements.
My output should be:
12345
6789
34567
4567
567
I need to arrange first numbers in one data table and remaining in another data table
In first example:
12345 should store in dt_results1
6789 should store in dt_results2
For second example
12345
should store in dt_results1
6789
34567
4567
567
should store in dt_results2
I made a workflow as per your requirement. Check the below steps for better understanding,
→ Use the assign to store the Input Text in a variable called InputString,
- Assign -> InputString = "A ID 12345 has match with the other id 6789.And 34567 matches with requirements 4567 matches with requirements 567 matches with requirements
A ID 12345 has match with the other id 6789."
→ Use the Build datatable activity to intitialize a datatable called dt_result1 and create a column called Extracted Numbers.
→ Then use another Build datatable activity to initialize a datatable called dt_result2 and create a column called Extracted Numbers.
→ Then take an assign activity and give the below LINQ Expression to store the data in dt_results1,
→ Then use the write range workbook activity to write the data in dt_results1 in Sheet1.
→ Use another write range workbook activity to write the data in dt_results2 in Sheet2.
Check the below workflow for better understanding, Sequence2.xaml (17.6 KB)
What if my input is like this
A ID 12345 has match with the other id 6789:34567 matches with requirements1 4567 matches with requirements2 567 matches with requirements
My output should be:
12345 should be in dt_results1
34567
4567
567
Should be in dt_results2