C# Split用法

string FullName = "中国/江苏省/南京市/鼓楼区";
String[] splitAddress = FullName.Split('/');
string qm= splitAddress[splitAddress.Length-1]; //鼓楼区
原文地址:https://www.cnblogs.com/tldxh/p/7269625.html