我一直在用python做一个简单的着色器。它使用re.finditer查找引号之间的 all 单词索引,并在tkinter文本框中为这些单词上色。由于某些原因,当框打开时,未找到所有单词。这是我的代码:
import tkinter as tk
import re
def htmlbasiccolorer(self):
def find2(self, color, warning):
string = (str(self.get("1.0",tk.END)))
lines=string.split("\n")
for i,line in enumerate(lines):
y=(i+1)
for e in re.finditer(r'"(.*?)"', line):
startindex= e.start()
endindex= e.end()
startindex=(str(y)+'.'+(str(startindex)))
endindex=(str(y)+'.'+(str(endindex)))
startindex=float(startindex)
endindex=float(endindex)
startindex=(round(float(startindex), 2))
endindex=(round(float(endindex), 2))
self.tag_configure(warning, background="white", foreground=color)
self.tag_add(warning, startindex, endindex)
find2(self, "purple", "id-6")
s=tk.Tk()
s.geometry('1000x600')
t=tk.Text(s)
t.insert(tk.END, """
<!DOCTYPE html>
<html
xmlns="http://www.w3.org/1999/xhtml"
xml:lang="en-US"
lang="en-US"
dir="ltr"
xmlns:fb="http://ogp.me/ns/fb#" xmlns:og="http://ogp.me/ns#"
class=" user-logged-out">
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# game: http://ogp.me/ns/game#">
<meta charset="utf-8" />
<meta name="ROBOTS" content="NOODP" />
<meta name="ROBOTS" content="NOYDIR" />
<meta name="verify-v1" content="TgxixMKtxcQ+9NUdD7grKbzw3tAl3iJWlTPSPKt9t0I=" />
<meta name="p:domain_verify" content="314c7ba9469cc171a12a46b43e0e2aed" />
<meta name="google-site-verification" content="n7BdKb0xn1E9tRJXvmMxE3Ynr-QajBOi1yA1srT4Nrc" />
<meta name="apple-itunes-app" content="app-id=329218549">
<meta name="description" content="Play chess on Chess.com - the #1 chess community with +20 million members around the world. Play online with friends, challenge the computer, join a club, solve puzzles, analyze your games, and learn from hundreds of video lessons. You can also watch top players and compete for prizes." />
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
<link rel="preconnect" href="//betacssjs.chesscomfiles.com">
<link rel="preconnect" href="//images.chesscomfiles.com">
<link rel="dns-prefetch" href="//betacssjs.chesscomfiles.com">
<link rel="dns-prefetch" href="//images.chesscomfiles.com">
<link
as="font"
crossorigin="crossorigin"
href="/bundles/web/fonts/chessglyph-regular.d4a95b80.woff2"
rel="preload"
type="font/woff2">
<link rel="publisher" href="https://plus.google.com/+chess"/>
<link rel="apple-touch-icon" href="https://betacssjs.chesscomfiles.com
<div id="challenge-popover"></div>
<div id="message-popover"></div>
<div id="modal-video"></div>
<div id="trophy-popover"></div>
<div id="user-popover"></div>
</body>
</html>
""")
t.pack(expand=1, fill=tk.BOTH)
htmlbasiccolorer(t)
s.mainloop()
以下是其外观的示例。已找到紫色文本,而没有找到黑色文本。两个引号之间的某些文本仍为黑色。 我在Windows 10上使用python 3.6。 任何帮助将不胜感激。
答案 0 :(得分:1)
您正在为文本窗口小部件索引使用浮点数。索引不是浮点数,它们是格式为 line 。 column 的字符串。然后,您在选择将索引向上或向下舍入的奇怪选择。
让我们以“ NOYDIR”为例,因为您声称那是找不到的。仅使用一条打印语句,您会发现它正在查找NOYDIR,但它正在计算的索引以14.32作为开始,而14.4作为结束。因为结束索引在开始索引之前(字符4在字符32之前),所以tkinter不会突出显示该单词。
为什么第二个索引是14.4?这是因为e.start()
返回40。您通过附加“”将其转换为浮点数。和该行的值,得出“ 1.40”。然后,将其转换为浮点数,将“ 1.40”转换为“ 1.4”。这就是为什么您不应该将文本小部件索引视为浮点数的原因。索引是字符串,形式为 line 。列。当您将其转换为浮点型时,值“ 14.40”与“ 14.4”相同,但对于文本小部件“ 14.40”和“ 14.4”而言却完全不同。
答案 1 :(得分:0)
我在 tkinter 文档中发现索引应为 以字符串的形式传递,其中包含行号和列号, 用点分隔。
因此,将索引更改为 float ,然后将其四舍五入对我来说很奇怪。
我认为,应该删除这些说明。