gpt4 book ai didi

c# - 使用正则表达式获取每个反斜杠之间的字符串

转载 作者:太空宇宙 更新时间:2023-11-03 17:40:59 32 4
gpt4 key购买 nike

我想要正则表达式组中“\”反斜杠之间的内容。

C:\\Development\\TestEnvironment\\VIdeo\MyVideo.mp3

最佳答案

如果你是 hell-bent关于使用正则表达式:

using System;
using System.Text.RegularExpressions;

class Program
{
static void Main()
{
// ... Input string.
string input = "C:\Development\TestEnvironment\VIdeo\MyVideo.mp3";

// ... One or more digits.
Match m = Regex.Match(input, "(?i)(?x)\\\\([\\w\\.]+)");

// ... Write value.
Console.WriteLine(m.Value);
}
}

关于c# - 使用正则表达式获取每个反斜杠之间的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22601546/

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