❶ python如何實現 文件中查找上/下一個字元串
有正則吧。pattern = r"12efde",用match可以匹配到,並獲取當前位置
❷ python讀取word每一行
Python學習筆記(28) - Python讀取word文本 - 程序員大陽的博客...
1. 簡介 Python可以利用python-docx模塊處理word文檔,處理方式是面向對象的。也就是說python-docx模塊會把word文檔,文檔中的段落、文本、字體等都看做對象,
2. 相關概念 如果需要讀取
❸ python中怎麼返回指定查找字元的位置
Python編程中對字元串進行搜索查找,並返回字元位置,案例代碼如下:
#
#usings.find(sub[,start[,end]])
#以下面test這段文本為例
text=''
##查找上面文本中的SA字元串
search='SA'
start=0
whileTrue:
index=text.find(search,start)
#ifsearchstringnotfound,find()returns-1
#searchiscomplete,breakoutofthewhileloop
ifindex==-1:
break
print("%sfoundatindex%d"%(search,index))
#
start=index+1
//運行結果:
#SAfoundatindex3
#SAfoundatindex31
#SAfoundatindex41
❹ 如何用Python語言實現在一個文件中查找特定的字元串
用正則表達式
>>>s='helloworld'
>>>importre
>>>re.search('wor',s)
<_sre.SRE_Matchobject;span=(6,9),match='wor'>