C 怎麼擷取字串中指定字元及其後面的字元

2021-10-09 10:34:20 字數 435 閱讀 6248

方法1:去掉空格以及後面的字元

怎麼擷取讓date的值為"2020/09/18",即去掉空格以及後面的字元

string date = "2020/09/18 21:24:59"

string result=date.split(new char)[0];

方法2:擷取字串中指定字元及其後面的字元

string s="12345-3434";

s.substring(0,s.lastindexof("-"));      使用這個方法:     s.substring(s.indexof('-')+1) 

s.substring(0,s.indexof("-"));

方法3:僅是時間格式的格式化處理:

datetime.now.tostring("yyyy/mm/dd")

C 怎麼擷取字串中指定字元及其後面的字元

方法1 去掉空格以及後面的字元 怎麼擷取讓date的值為 2011 12 9 即去掉空格以及後面的字元 string date 2011 12 9 21 24 59 string result date.split new char 0 方法2 擷取字串中指定字元及其後面的字元 string s 1...

asp擷取字串函式 asp怎麼擷取字串

asp擷取字串函式 asp怎麼擷取字串 擷取字串 strvalue 標題,字數 function strvalue str,lennum dim p num dim i if strlen str lennum then strvalue str else p num 0 x 0do while n...

C 擷取字串

1.根據單個分隔字元用split擷取 string st gt123 1 string sarray st.split 即可得到sarray 0 gt123 sarray 1 1 2.利用多個字元來分隔字串 string str gtazb jiangjben 123 string sarray s...