1.在字串中指定開始位置插入字串;
#include
#include
#include
int main()
for(i = 0; i < lenth2; i++)
printf("%s\n",str1);
return 0;
}2.幾個字串求出最小串;
#include
#include
#include
int main ()
printf("how many strings do you need to input?\n");
scanf("%d",&num);
printf("please input your strings...\n");
for(i = 0; i < num; i++)
p = str[0];
for(i = 1; i < num; i++)
}printf("the smallest string is %s\n",p);
return 0;
}
3.請編寫乙個c函式,該函式將乙個字串逆序;
#include
#include
#include
int main()
printf("%s\n",str);
return 0;
}4.輸入乙個字串,計算字串中子串出現的次數;
#include
#include
#include
int main()
else
if(j == lenth2)
}printf("%d\n",count);
return 0;
}5.編寫乙個c函式,將「i am from shanghai」倒置為「shanghai from am i」
#include
#include
#include
int main()
char *p3 = null;
p1 = str;
p2 = str;
while (*p2)
p1 = p2 + 1;
}p2++;
}printf("%s\n",str);
return 0;
}
列印字串的任意一部分
使用printf 函式列印字串的任意部分,請看下例 include include include int main 輸出結果為 first 11 characters this is the last 13 characters source string 在上例中,第一次呼叫printf 函式時...
與字串的 一部分 比較(LIKE)
與 字串的 一部分 進行 比較,使用 like 演算子。table not like 檢索字串 escape 轉義字元 檢索 與 檢索字串 部分地匹配的 記錄。table 例1 檢索 其列 job name 以 job 字串 開頭的 記錄 使用 萬用字元 select from employees ...
一部分字符集
charset 描述us ascii 7 位 ascii 字元,也叫作 iso646 us unicode 字符集的基本拉丁塊 iso 8859 1 iso 拉丁字母表 no.1,也叫作 iso latin 1 utf 8 8 位 ucs 轉換格式 utf 16be 16 位 ucs 轉換格式,bi...