ReplaceAll with a string
Imports System Imports System.Xml Imports System.Xml.XPath Public Class MainClass Public Shared Sub Main() Dim root As XElement = _ <Root> <Child>child content</Child> </Root> root.ReplaceAll("Some text") Console.WriteLine(root) End Sub End Class