I have a string of attachments like this:
"
<a href="/departments/Attachments/2043_3162016062557_SharePoint_Health%20Check%20Assessment.docx">SharePoint_Health Check Assessment.docx</a><br><a href="/departments/Attachments/2043_3162016062557_Test%20Workflow.docx">Test Workflow.docx</a><br>" .
and i used this method :
AttachmentName = System.Text.RegularExpressions.Regex.Replace(AttachmentName, @"<(.|\n)*?>", "String.Empty");
and i got result :
SharePoint_Health Check Assessment.docxTest Workflow.docx
How can i split the string using c# and get the result with each file name seperately like :
SharePoint_Health Check Assessment.docx
Test Workflow.docx
and then show them into some control one by one.
and after that i want just the URL of the string like "http://srumos1/departments/Attachments/2053_3172016093545_ITPCTemplate.txt" and "http://srumos1/departments/Attachments/2053_3172016093545_ITPCTemplate.txt"
how can i do that