<一> 方法:Split 描述:分割函數 內容: string str="2017-12-21" 取值: str.Split('-')[0] :2017 str.Split('-')[2] :21 <二> 方法: Contains 描述:檢某個字元在當前字元串中是否存在 內容: string str ...
<一>
方法:Split
描述:分割函數
內容: string str="2017-12-21"
取值: str.Split('-')[0] :2017
str.Split('-')[2] :21
<二>
方法: Contains
描述:檢某個字元在當前字元串中是否存在
內容: string str="2017-12-21"
取值:if (str.Contains("12"))
{
存在則 str.Split('-')[1] :12
}
<三>
方法: Substring
描述:從字元串某個位置開始截取幾位
內容: string str="2017122563"
取值: str.Substring(8,2):63
str.Substring(4,2):12
str.Substring(4,scheduleId.Length-4):122563