So, I'm looking for a way to replace the entire instance of a <data>
tag where the name contains '.Value'. I've whipped up a Regex for this (below), but it appears that VS2013 doesn't support multiline find/replace. I'm looking for a solution that doesn't require third party downloads (as this is for work).
Regex (works on http://www.regexr.com/):
<data name=".*.Value" xml:space="preserve">\n <value>.*</value>\n </data>
Good (keep):
<data name="ListItemResource12.Text" xml:space="preserve">
<value>Test Value</value>
</data>
Bad (replace):
<data name="ListItemResource12.Value" xml:space="preserve">
<value>123</value>
</data>
If anyone has and ideas or tips toward multiline find/replace, they'd be appreciated.