8 與字串處理相關的幾個程式

2022-02-12 10:45:56 字數 933 閱讀 8840

1、轉換字串的輸入格式為:原來字串裡的字元+該字元連續出現的個數,例如字串:

1233422222

,轉化為

1121324125

。我們用sprintf

來實現,類同

printf

#include "iostream"

#include "string"

using namespace std;

int main()

else

}if (str[k] == str[k - 1])

;else

icount = 1;

sprintf(cmychar + strlen(cmychar), "%c%d", str[k], icount);

cout << cmychar << endl;

return 1;

}

2、整數轉換成字串

#include "iostream"

using namespace std;

int main()

ctemp[icount] = '\0';

cout << ctemp << endl;

icount--;

int j = icount, i = 0;

while(j >=0)

ctotransfer[i] = 0;

cout << ctotransfer << endl;

return 1;

}

3、字串轉換成整數

#include "iostream"

using namespace std;

int main()

cout << isum << endl;

return 1;

}

8 與字串處理相關的幾個程式

1 轉換字串的輸入格式為 原來字串裡的字元 該字元連續出現的個數,例如字串 1233422222 轉化為 1121324125。我們用sprintf 來實現,類同 printf include iostream include string using namespace std int main ...

字串處理的幾個方法

只是工作中常用到對使用者輸入的字串進行判斷處理等,所有總結了一些方法,作為總結,亦可復用。public sealed class cleanstring if retval null retval string.empty return retval 是否數字字串 public static boo...

C C 字串相關處理

1.strcpy strcpy char dest,const char src 把從src位址開始且含有 0 結束符的字串複製到以dest開始的位址空間。2.strcmp strcmp char 字串1,char 字串2 比較兩個字串 設這兩個字串為str1,str2,若str1 str2,則返回...