分割字符串
C# 2018-11-26 15:09:01

 1、按.分割

C# Code复制内容到剪贴板
  1. string primayKey = "tablename.ID";  
  2. string[] sArray = primayKey.Split(new string[] { "." }, StringSplitOptions.None);  
  3.   
  4. // 打印长度  
  5. System.Diagnostics.Debug.WriteLine(sArray.Length);  
  6.   
  7. // 依次打印值  
  8. foreach (string item in sArray)  
  9.     System.Console.Write(item + " ");  

 

 

本文来自于:http://www.yoyo88.cn/study/net/381.html

Powered by yoyo苏ICP备15045725号