字串 字串的查詢和替換

2021-09-27 20:46:25 字數 535 閱讀 5016

hello_str = "hello world"

# 1. 判斷是否以指定字串開始

print(hello_str.startswith("hello"))

# 2. 判斷是否以指定字串結束

print(hello_str.endswith("world"))

# 3. 查詢指定字串

# index同樣可以查詢指定的字串在大字串中的索引

print(hello_str.find("llo"))

# index如果指定的字串不存在,會報錯

# find如果指定的字串不存在,會返回-1

print(hello_str.find("abc"))

# 4. 替換字串

# replace方法執行完成之後,會返回乙個新的字串

# 注意:不會修改原有字串的內容

print(hello_str.replace("world", "python"))

print(hello_str)

字串擷取和字串替換

substring 叫做擷取字串,split叫做字串分割 substring擷取,下面是從第0位擷取前3個 說白了是從第一位擷取前3個 中的0索引就是我們常說的第一位 列印結果 用一生 split擷取,下面是通過 擷取,把字元分為6部分 string txta 用,一,生,下,載,你 string ...

Linux vi 查詢和替換字串

a.查詢乙個字串使用 你要查詢的內容 a.檔案內全部替換 s abc def g 用def替換檔案中所有的abc s linuxidc.com xwen.net g 如檔案內有 可用 替換,比如 s linuxidc.com xwen.net g b.檔案內區域性替換 把10行到50行內的 abc ...

vim查詢 替換字串

vi vim 中可以使用 s 命令來替換字串。該命令有很多種不同細節使用方法,可以實現複雜的功能,記錄幾種在此,方便以後查詢。s vivian sky 替換當前行第乙個 vivian 為 sky s vivian sky g 替換當前行所有 vivian 為 sky n,s vivian sky 替...