개발2014. 2. 13. 13:54
300x250


c# 닷넷에서 substring 과 split 의 사용법



ㅁ substring 


string aaa = this.hidCode.Value.Substring(0,1); 

string bbb = this.hidCode.Value.Substring(1,1);



ㅁ split


문자열을 분리(split) 하여 값을 가져오고자 하는 경우.


// e.CommandArgument  를 '|' 로 잘라서 첫번째문자열을 aaa 에 넣어라.. 


string aaa = e.CommandArgument.ToString().Split(new char[] { '|' })[0].ToString(); 



300x250
Posted by 마스타