常用的字串方法

2022-06-13 04:57:09 字數 1518 閱讀 2332

常用的字串方法

7個基本:join,split,find,strip,upper,lower,replace

5個深度:1.for迴圈index;2.索引,下標,獲取字串中的某乙個字元;3.切片;4.獲取長度;5.獲取連續或不連續的數字;

str="

1r大自然的景色真美,讓我流連忘返啊r

"test_str='+'

.join(str)

print

(test_str)

test_str = str.split('大'

)print

(test_str)

test_str = str.find('大'

)print

(test_str)

test_str = str.strip("1"

)print

(test_str)

test_str =str.upper()

print

(test_str)

test_str =str.lower()

print(test_str)

執行結果

1+r+大+自+然+的+景+色+真+美+,+讓+我+流+連+忘+返+啊+r

['1r', '自然的景色真美,讓我流連忘返啊r']

2r大自然的景色真美,讓我流連忘返啊r

1r大自然的景色真美,讓我流連忘返啊r

1r大自然的景色真美,讓我流連忘返啊r

test = "

妹子有種衝我來

"index =0

while index v =test[index]

print

(v) index += 1

print('

*****==')

for zjw in

test:

print

(zjw)

#二、索引,下標,獲取字串中的某乙個字元

v = test[3]

print

(v)#

三、切片

v = test[0:-1] #

0=< <1

print

(v)#

四、獲取長度

#python3: len獲取當前字串中由幾個字元組成

v =len(test)

print

(v)#

注意:#

len("asdf")

#for迴圈#索引

#切片#五、獲取連續或不連續的數字,

#python2中直接建立在內容中

#python3中只有for迴圈時,才乙個乙個建立

r1 = range(10)

r2 = range(1,10)

r3 = range(1,10,2)

#幫助建立連續的數字,通過設定步長來指定不連續

v = range(0, 100, 5)

#for item in

v:

print(item)

字串常用方法

字串常用方法 public class 3 abc 5 int indexof string str 輸出字串2在字串1中的下標 system.out.println hello crl endswith crl 6 6int indexof string str,int fromindex 在字串...

字串常用方法

1 判斷型別 9 方法說明 string.isspace 如果 string 中只包含空格,則返回 true string.isalnum 如果 string 至少有乙個字元並且所有字元都是字母或數字則返回 true string.isalpha 如果 string 至少有乙個字元並且所有字元都是字...

字串常用方法

字串常用方法 method 描述charat 返回指定索引位置的字元 charcodeat 返回指定索引位置字元的 unicode 值 concat 連線兩個或多個字串,返回連線後的字串 fromcharcode 將字元轉換為 unicode 值 indexof 返回字串中檢索指定字元第一次出現的位...