首页 > 代码库 > C# Split用法

C# Split用法

 

string FullName = "中国/江苏省/南京市/鼓楼区";
String[] splitAddress = FullName.Split(/);
string qm= splitAddress[splitAddress.Length-1]; //鼓楼区

 

C# Split用法