難度係數:初級
系統:windows 7
軟體:excel 2010
學習路徑圖:
instr,判斷字串1是否包含字串2find,尋找字串1在字串2中出現的位置(從1開始)
substitute,將字串中的資訊替換為新的資訊
sub 查詢與替換()
x1 = "def-a-new-function"
x2 = "def"
x3 = "e"
if instr(x1, x2) <> 0 then
debug.print ("位置1:x1中包含x2")
else
debug.print ("位置2:x1中不包含x2")
end if
debug.print ("位置3:" & pos)
debug.print ("位置4:" & y)
end sub
**截圖
執行結果
instr(x1, x2)
,通過將結果與0進行比較,判斷x1中是否包含x2
這些函式還有其它一些引數,可以個性化做一些設定,具體可以f1檢視一下幫助檔案
官方幫助
字串 字串的查詢和替換
hello str hello world 1.判斷是否以指定字串開始 print hello str.startswith hello 2.判斷是否以指定字串結束 print hello str.endswith world 3.查詢指定字串 index同樣可以查詢指定的字串在大字串中的索引 pr...
linux下字串查詢 與替換
1 在vi中使用的查詢替換方法 利用 s 命令可以實現字串的替換。具體的用法包括 s str1 str2 用字串 str2 替換行中首次出現的字串 str1 s str1 str2 g 用字串 str2 替換行中所有出現的字串 str1 s str1 str2 g 用字串 str2 替換正文當前行到...
Python 字串查詢,替換與分割
在大家日常工作使用 word 編寫文件的過程中,經常會遇到乙個問題,發現前面寫的文件中某個詞用錯了,需要換為另外乙個詞來表達。word 提供了全文查詢與替換的功能,可以幫助使用者很方便的處理這一問題。那麼,這一功能最基礎和核心的就是字元替換,如果我們要自己基於 python 來實現,該怎麼做呢?字串...