gpt4 book ai didi

vb.net - 替换 VB.NET 中括号中的字符串

转载 作者:行者123 更新时间:2023-12-02 11:31:17 25 4
gpt4 key购买 nike

我有带括号的字符串:

Dim A as String = "Example (example1)"

我想用另一个字符串替换括号中的字符串,所以我应该得到例如......

A = "Example (example2)"

最佳答案

您可以使用Regex.Replace Method

Imports System.Text.RegularExpressions

Dim input As String = "Example (example1)"
Dim replacement As String = "example2"
Dim expression As New Regex(\(.*\))
Dim result As String = expression.Replace(input, replacement)

该模式将匹配两个括号之间的任何内容,包括其他括号(贪婪)。调整表达式以满足您的需要。

关于vb.net - 替换 VB.NET 中括号中的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12357504/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com