Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 Uri,其中包含我放入 if 块的路径的一部分。它就像
if (absUri.AbsolutePath.Contains("W3C//DTD%20XHTML%201.1//EN"))
我想用更可靠和健壮的东西替换 .Contains 部分,就好像在 //EN 之后有一段字符串,即使这样也能满足 if 块。整个路径是这样的:C:/Users/a/desktop/fol/W3C//DTD%20XHTML%201.1//EN。有什么方法吗?
我想我正在寻找类似 .EndsWith 的东西。
好吧,“//EN”之后是否有内容无关紧要,因为字符串仍将包含您的搜索词。
您提到您想要更可靠和更强大的东西,那么您看到了什么问题?
正如您已经意识到的那样.EndsWith,如果在“//EN”之后有任何内容或者如果情况有所不同,则会失败,但我认为它不会比.Contains. 事实上,我希望它们彼此一样可靠。
.EndsWith
.Contains