Gargoolgala
New Member
- Joined
- Sep 1, 2016
- Messages
- 6
Hi,
I have data exported from PowerApps/MS Flow into a excel spreadsheet and I need to extract the specific strings from the data to paste into Word.
Sample strings:
[TABLE="width: 64"]
<tbody>[TR]
[TD="width: 64"][{"Id":2,"Value":"Unix/Linux"},{"Id":3,"Value":"VPSX"}][/TD]
[/TR]
</tbody>[/TABLE]
[TABLE="width: 64"]
<tbody>[TR]
[TD="width: 64"]{"@odata.type":"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference","Id":1,"Value":"Single forest multiple domains"}
The strings I need are always after the Value text in the string . There could be multiple "Value"s in one string or the string could be empty and just show []
I am trying to work out how I can extract so the results would be:
Unix/Linux,VPSX - this would need to probably need to be concatenated together
Single forest multiple domains - this is one value and needs the spaces
I have tried using replace to remove all the extra data but that ends up turning into a single string with no spacing - obviously did that wrong.
I have searched for options but cannot wrap my head around it
Any ideas appreciated.[/TD]
[/TR]
</tbody>[/TABLE]
I have data exported from PowerApps/MS Flow into a excel spreadsheet and I need to extract the specific strings from the data to paste into Word.
Sample strings:
[TABLE="width: 64"]
<tbody>[TR]
[TD="width: 64"][{"Id":2,"Value":"Unix/Linux"},{"Id":3,"Value":"VPSX"}][/TD]
[/TR]
</tbody>[/TABLE]
[TABLE="width: 64"]
<tbody>[TR]
[TD="width: 64"]{"@odata.type":"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference","Id":1,"Value":"Single forest multiple domains"}
The strings I need are always after the Value text in the string . There could be multiple "Value"s in one string or the string could be empty and just show []
I am trying to work out how I can extract so the results would be:
Unix/Linux,VPSX - this would need to probably need to be concatenated together
Single forest multiple domains - this is one value and needs the spaces
I have tried using replace to remove all the extra data but that ends up turning into a single string with no spacing - obviously did that wrong.
I have searched for options but cannot wrap my head around it
Any ideas appreciated.[/TD]
[/TR]
</tbody>[/TABLE]