C#截取字符串函数是什么样子的呢?这个在实际工作中我们经常会遇见这样的实际应用问题,那么具体的解决方案是什么呢?下面就向你介绍C#截取字符串函数的实现:
C#截取字符串函数实例:
- //C#截取字符串函数
- public string CutStr(string sInString,int iCutLength){
- if(sInString==null ||
- sInString.Length==0 || iCutLength<=0) return "";
- int iCount=System.Text.Encoding.
- GetEncoding("Shift_JIS").GetByteCount(sInString);
- if(iCount>iCutLength){
- int iLength=0;
- //C#截取字符串函数
- for(int i=0;i<sInString.Length;i++){
- int iCharLength=
- System.Text.Encoding.GetEncoding("Shift_JIS").
- GetByteCount(new char[]{sInString[i]});
- iLength += iCharLength;
- if(iLength==iCutLength){
- sInString=sInString.Substring(0,i+1);
- break;
- //C#截取字符串函数
- }else if(iLength>iCutLength){
- sInString=sInString.Substring(0,i);
- break;
- }
- }
- }
- return sInString;
- }
C#截取字符串函数的相关信息就向你介绍到这里,希望对你了解和学习C#截取字符串函数有所帮助。
【编辑推荐】