Regex to exclude }

Hi @Catarina_Fantasia_Valente

If would you like to remove the double quote after every close curly braces }, Then use the below expression

System.Text.RegularExpressions.Regex.Replace(Input.toString, "(?<=\})\""", "")

Above expression will remove the double quote after every }

Hope it helps!!