XQuery – replace function
The replace function replaces the matched input string with a given string. Syntax replace($input, $regex, $string) Input Parameters $input − input string.$regex − regular expression.$string - string to replace original string. Example XQuery Expression let…