Use case: Remove a string from Azure Application Insights results
This is a simple question but with minimal examples online and as a new user, and with limited experience (but learning) in Regex, I am struggling.
How do I remove all instances of | Articles
in the following table, which is an example of what I am exporting from Azure Application Insights?
This did not work:
| extend name=replace(@' | Articles', @'', name)
I have fiddled quite a bit unsuccessfully with an example in Microsoft's documentation (I know this interpretation is incorrect):
| extend str=strcat(' | Articles', tostring(name))
| extend replaced=replace(@' | Articles', @'', str)
Thank you for any insights.