使用C#进行字符串分析

本文关键字:字符串 使用 | 更新日期: 2023-09-27 17:57:29

我是C#的初学者,我只想从这样的字符串中提取"title"字符串:"http://playdebug.games.com/facebook/title.html"

使用C#进行字符串分析

我建议使用Path.GetFileNameWithoutExtension()

String toParse = "http://playdebug.games.com/facebook/title.html";
String result = Path.GetFileNameWithoutExtension(toParse);

只需通过子字符串获取最后一部分,要剪切的位置是'/'的最后一个索引。string s="http://playdebug.games.com/facebook/title.html";

 s = s.Substring(s.LastIndexOf('/') + 1);

或者短路,因为它可以被视为一条路径;)

 string s = Path.GetFileNameWithoutExtension("http://playdebug.games.com/facebook/title.html");