gpt4 book ai didi

c# - 如何在 C# 中使用正则表达式删除 < 和 > 之间的字符?

转载 作者:太空狗 更新时间:2023-10-30 00:15:19 25 4
gpt4 key购买 nike

我有一个字符串 str="<u>rag</u>" .现在,我想获取字符串 "rag"只要。如何使用正则表达式获取它?

我的代码在这里..

我得到了输出=""

提前致谢..

C#代码:

string input="<u>ragu</u>";
string regex = "(\\<.*\\>)";
string output = Regex.Replace(input, regex, "");

最佳答案

const string HTML_TAG_PATTERN = "<.*?>";
Regex.Replace (str, HTML_TAG_PATTERN, string.Empty);

关于c# - 如何在 C# 中使用正则表达式删除 < 和 > 之间的字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15925498/

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