1 str.upper()全部大寫 str.lower()全部小寫 str.swapcase()大小寫反轉 str.title()所有字元首字母大寫其餘小寫全部產生新字串
2str.split(sep=「劈分符」,maxsplit=n) 可指定劈分符和劈分次數 rsplit()從右側開始劈分將各部分輸出乙個列表
3str.replace(原字串,新字串,替換次數)
4符號.join(變數名str/list/dict) 將字串、列表、字典內的各元素用指定符號連線
str=「python」 print("+".join(str)) --p+y+t+h+o+n
5格式化字串
%s字串型 %i、%d整數型 %f浮點型%s %變數名
.format(變數1,。。。,變數n)
字串常用操作。。。
include include include char itoa int value result char malloc sizeof char i 1 for j 0 jint i 65 char p itoa i printf s n p free p p null include incl...
字串常用操作
coding utf 8 import string1 判斷str unicode字串物件 def isastring anobj return isinstance anobj,basestring basesting是str,unicode的父類 defisaint anobj return i...
字串常用操作
一 變換大小寫 string.tolowercase string.touppercase var big qwertyu big.tolowercase qwertyu var yh qwertyui yh.touppercase qwertyui 二 獲取字串長度 var yy 好好學習前端做個...