I want to remove all the brackets between my text in the entire string .I used the following below but did not get output.
If the initial invoice date stated above does not align to the execution date, then the initial invoice date will be the execution date. Databricks reserves the right to accelerate scheduled billing of fees for the Specified Commitment(s) (and associated Support Services, if any) if Customer’s usage exceeds the related amount for which it has been billed. Additionally, if Customer’s usage exceeds the applicable Specified Commitment or Universal Usage Commitment (e.g. Burst Usage), fees for such Burst Usage (and for associated Support Services, if any) shall be billed monthly in arrears. Fees above do not include True-up Payments (if any), which would be invoiced by Databricks after the End Date under the terms of this Order.
input = "If the initial invoice date stated above does not align to the execution date, then the initial invoice date will be the execution date. Databricks reserves the right to accelerate scheduled billing of fees for the Specified Commitment(s) (and associated Support Services, if any) if Customer’s usage exceeds the related amount for which it has been billed. Additionally, if Customer’s usage exceeds the applicable Specified Commitment or Universal Usage Commitment (e.g. Burst Usage), fees for such Burst Usage (and for associated Support Services, if any) shall be billed monthly in arrears. Fees above do not include True-up Payments (if any), which would be invoiced by Databricks after the End Date under the terms of this Order."
Output = System.Text.RegularExpressions.Regex.Replace(input,"[()]","")