Q
獲取內容
17
A
回答
27
string path = "C://hello//world";
int pos = path.LastIndexOf("/") + 1;
Console.WriteLine(path.Substring(pos, path.Length - pos)); // prints "world"
的LastIndexOf
方法執行相同IndexOf
..但是從字符串的結尾。
3
我會建議看看System.IO
命名空間,因爲它似乎你可能想要使用它。還有DirectoryInfo和FileInfo也可以在這裏使用。具體DirectoryInfo's Name property
var directoryName = new DirectoryInfo(path).Name;
9
9
using System.Linq;
var s = "C://hello//world";
var last = s.Split('/').Last();
1
試試這個:
string worldWithPath = "C://hello//world";
string world = worldWithPath.Substring(worldWithPath.LastIndexOf("/") + 1);
相關問題
- 1. 獲取jar內容
- 2. 獲取JSON內容
- 3. 獲取URL內容
- 4. PHP獲取URL內容
- 5. 獲取網絡內容
- 6. Typo3獲取內容路徑
- 7. Xcode獲取網絡內容
- 8. 的NodeJS READFILE獲取內容
- 9. 從塊中獲取內容
- 10. 獲取uidialog全部內容
- 11. 如何獲取iframe內容?
- 12. 獲取內容的ID
- 13. 獲取段落內容
- 14. 通過URI獲取內容
- 15. TinyMCE/Prestashop - 獲取HTML內容
- 16. PHP獲取網頁內容
- 17. jQuery:獲取內容/ innerhtml onclick
- 18. Python獲取內容長度
- 19. Javascript對象 - 獲取內容
- 20. 從html中獲取內容
- 21. HtmlAgilityPack - 獲取div內容
- 22. 獲取ArrayCollection的內容
- 23. PHP獲取文件內容
- 24. 獲取文章內容URL
- 25. 文件獲取內容PHP
- 26. 獲取文件內容
- 27. 獲取表的內容BeautifulSoup
- 28. 文件獲取內容params
- 29. Ruby獲取頁面內容
- 30. 獲取webservice的內容
我曾經想過,但要注意的是,OP似乎不把重點放在一個文件,而是一個目錄 – 2013-04-07 02:51:23