#define _crt_secure_no_warnings
#include#include//sprintf的作用:生成乙個指令,把他對映到字串裡,對他初始化
void main1()
; int num;
char op[30] = ;
scanf("%d%s", &num, op);
sprintf(str,"for /l %%i in (1,1,%d) do %s", num, op);//開啟num個op
system(str);
system("pause");
}void main2()
; char op[30] = ;
scanf("%s", op);
sprintf(str, "taskkill /f /im %s", op);//關閉op程序
system(str);
system("pause");
}void main3()
;//儲存指令
sprintf(str, "color %x%x", i, 0xf - i);//列印指令
system(str);//變色 }}
void main4()
; sprintf(str3, "%s%s", str1, str2);//字串相加
system(str3);//結果是開啟notepad
}void main5()
int mystrlen(char *str)
return n;//字串統計
}void main6()
字串應用
var str abcdef alert str 0 aalert str.charat 1 b var str 我是乙個字串 alert str.charcodeat 0 utf 8編碼 字串的indexof var str abac?def alert str.indexof 找第一次出現的位置...
字串的應用
對解決非數值的問題,主要設計到的操作物件是字串,簡稱串。對串的儲存可以又兩種處理方式 一種是將串定義成字元型陣列,串的儲存空間分配在編譯是完成,不能更改,這種方式稱為串的靜態儲存結構 另外一種是串的儲存空間在程式執行時動態分配,這種方式稱為串的動態儲存結構。串的鏈式儲存結構是包含資料域和指標域的節點...
C 字串應用
using system namespace day 將某一時間轉化為固定串格式 console writeline days string strb strb str substring 1 5 將str從第乙個位置開始,擷取5個字元 console writeline strb string s...