本文介绍了正则表达式帮助提取字符串的某一部分的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
嘿我试着去从字符串中提取某些信息。该字符串看起来像名称:音乐mix.mp3大小:2356KB。我想只用扩展提取的文件名。我没有在正则表达式的很多知识,所以我希望能在这里得到一些帮助。谢谢!
Hey Im trying to extract certain information from a string. The String looks like "Name: music mix.mp3 Size: 2356KB". I would like to extract the file name only with the extension. I dont have much knowledge in regex, so I was hoping to get some help here.Thanks!
推荐答案
请检查下面的例子:
const string str = "Name: music mix.mp3 Size: 2356KB";
var match = Regex.Match(str, "Name: (.*) Size:");
Console.WriteLine("Match: " + match.Groups[1].Value);
这篇关于正则表达式帮助提取字符串的某一部分的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!