0

我收到了很多文本,并被要求在 tkinter 应用程序中显示它。文本有很多 html 标签,例如<em>...<\em><sup>... <\sup>,其中文本需要斜体或上标。

tkinter 有没有内置的方法来做到这一点?如果不是,是否可以编写一个函数,例如,将标签之间<em>的所有文本斜体,然后删除标签?

我知道我可以通过执行以下操作来删除标签:

for tag in ["<em>", "<\em>", "<sup>", "<\sup>"]:
    text = "".join(text.split(tag))

但我真的需要,至少,<em>在删除标签之间的文本之前将它们斜体。

我是 tkinter 的新手,我一直在看很多教程和谷歌搜索解决方案,但似乎 tkinter 不能自然地使用 html 标签,我找不到任何解决方案。

编辑:

我需要在常规的 tkinter 文本小部件中显示它。

我知道我可以使用 tkinter 的font方法slant=italic将文本框中的文本设置为斜体。我只需要知道一种将参数设置为<em>标签之间所有内容的方法。

4

1 回答 1

0

所以,我在过去的几天里自己解决了这个问题。首先,您必须在文本中找到要斜体的位置,从文本中删除 html 标签,然后将无标签文本放入文本小部件中,然后您必须识别点小部件的文本以斜体显示。

这有点挑剔,因为识别文本小部件文本中的点需要一个小数输入,其中小数点前的数字代表行号,小数点后的数字代表该行中字符的索引。这意味着您需要识别每个索引的行号,因此您需要一种方法来准确地知道一行结束和另一行开始的位置。此外,第 2 行第 4 行字符是2.4,第 2 行第 40 行字符2.40因此Float(f"{line_number}.{character_number}")不起作用,因为它会删除任何尾随零,您必须使用Decimal(f"{line_number}.{character_number}").

例如,在文本alphabet = 'abcd efg hijk\nlmnop qrs tuv wx yz'中,如果要将所有字母从“h”变为“p”,则首先必须获取“h”的索引,以便在 开始斜体start = alpha.find("h"),然后在 p 之后停止斜体,end = alphabet.find("p") + 1。接下来,您必须找到起点和终点在哪一行,并将索引(分别为 9 和 19)转换为十进制格式(1.9 和 2.5):

start_line = alphabet[:start].count("\n") + 1
end_line = alphabet[:end].count("\n") + 1
line_start_point = len(alphabet[alphabet[:start].rfind("\n") + 1: start])
line_end_point = len(alphabet[alphabet[:end].rfind("\n") + 1: end])
start_point = Decimal(f"{start_line}.{line_start_point}")
end_point = Decimal(f"{end_line}.{line_end_point}")

无论如何,这是我最终用来删除不必要的<sup>...</sup>标签和它们之间的任何内容的所有代码,并将标签之间的所有内容斜体<em>...</em>

from decimal import Decimal
from tkinter import *
from tkinter import font

def em_points(text):
    suppat = re.compile(r'<sup>\w*</sup>')
    suppatiter = suppat.findall(text)
    if suppatiter:
        for suptag in suppatiter:
            text = "".join(text.split(suptag))
    finds = list()
    if "<em>" in text:
        find_points = list()
        emcount = text.count("<em>")
        for _ in range(emcount):
            find_open = text.find("<em>")
            text = text[:find_open] + text[find_open + 4:]
            find_close = text.find("</em>")
            text = text[:find_close] + text[find_close + 5:]
            find_points.append([find_open, find_close])
        for points in find_points:
            finds.append(text[points[0]: points[1]])
    return [text, finds]

def italicize_text(text_box, finds):
    italics_font = font.Font(text_box, text_box.cget("font"))
    italics_font.configure(slant="italic")
    text_box.tag_configure("italics", font=italics_font)
    text_in_box = text_box.get(1.0, END)
    used_points = list()
    for find in finds:
        if find not in text_in_box:
            raise RuntimeError(f"Could not find text to italicise in textbox:\n    {find}\n    {text_in_box}")
        else:
            start_point = text_in_box.find(find)
            end_point = start_point + len(find)
            found_at = [start_point, end_point]
            if found_at in used_points:
                while found_at in used_points:
                    reduced_text = text_in_box[end_point:]
                    start_point = end_point + reduced_text.find(find)
                    end_point = start_point + len(find)
                    found_at = [start_point, end_point]
            used_points.append(found_at)
            text_to_startpoint = text_in_box[:start_point]
            text_to_endpoint = text_in_box[:end_point]
            start_line = text_to_startpoint.count("\n") + 1
            end_line = text_to_endpoint.count("\n") + 1
            if "\n" in text_to_startpoint:
                line_start_point = len(text_in_box[text_to_startpoint.rfind("\n") + 1: start_point])
            else:
                line_start_point = start_point
            if "\n" in text_to_endpoint:
                line_end_point = len(text_in_box[text_to_endpoint.rfind("\n") + 1: end_point])
            else:
                line_end_point = end_point
            start_point = Decimal(f"{start_line}.{line_start_point}")
            end_point = Decimal(f"{end_line}.{line_end_point}")
            text_box.tag_add("italics", start_point, end_point)

em_text = em_points(text)
clean_text = em_text[0]
em_list = em_text[1]

text_box = Text(root, width=80, height=5, font=("Courier", 12))
text_box.insert(1.0, clean_text)
italicize_text(text_box, em_list)
于 2020-12-18T21:47:01.277 回答