如何在 python tkinter 中为 *、# 等符号设置自定义颜色

发布于 2025-01-11 00:07:18 字数 950 浏览 0 评论 0原文

如何为某些符号设置特定颜色,例如 、# 等' 例如,如果我输入“”,它的颜色应该是蓝色,其他保持不变。

typedecker 先生,我正在绑定您这样的功能,但这不起作用


from tkinter import*
root = Tk()
def check_for_symbols(symbol_dict) :
    for i in symbol_dict :
        text.tag_remove(i, '1.0', END)
        
        pos = 1.0
        while 1:
            pos = text.search(i, pos, regexp = True, stopindex = END)
            if not pos:
                break
            last_pos = '%s+%dc' % (pos, len(i)) # The only change
            text.tag_add(i, pos, last_pos)
            pos = last_pos
        text.tag_config(i, foreground = symbol_dict[i])
    root.after(1000, lambda:check_for_symbols(symbol_dict))
    return
symbol_dict = {
    "*":"blue"
}
text = Text(root, background = "gray19", foreground = "white", insertbackground = 'white',font="Consolas 15 italic")
text.pack(expand=True,fill=BOTH)
root.after(1000, lambda : check_for_symbols(symbol_dict))
root.mainloop()

How to set specific color for certain symbols like ,#,etc '
example if I type "
" it's color should be blue and other stay remain same.

typedecker sir i am binding you function like this but this is not working


from tkinter import*
root = Tk()
def check_for_symbols(symbol_dict) :
    for i in symbol_dict :
        text.tag_remove(i, '1.0', END)
        
        pos = 1.0
        while 1:
            pos = text.search(i, pos, regexp = True, stopindex = END)
            if not pos:
                break
            last_pos = '%s+%dc' % (pos, len(i)) # The only change
            text.tag_add(i, pos, last_pos)
            pos = last_pos
        text.tag_config(i, foreground = symbol_dict[i])
    root.after(1000, lambda:check_for_symbols(symbol_dict))
    return
symbol_dict = {
    "*":"blue"
}
text = Text(root, background = "gray19", foreground = "white", insertbackground = 'white',font="Consolas 15 italic")
text.pack(expand=True,fill=BOTH)
root.after(1000, lambda : check_for_symbols(symbol_dict))
root.mainloop()

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

自由范儿 2025-01-18 00:07:18

与单词情况相同的过程 这里是我的,可以遵循,唯一的变化是用于检测的正则表达式符号。

last_pos = '%s+%dc' % (pos, len(i)) # The only change

进行了必要更改的完整 check_for_symbols 函数将如下所示:

def check_for_symbols(symbol_dict) : # pass symbol dict as argument using lambda construct.
#    symbol dict format-: {keyword : color}
    
    for i in symbol_dict :
        text.tag_remove(i, '1.0', tk.END)
        
        pos = 1.0
        while 1:
            pos = text.search(i, pos, regexp = True, stopindex = tk.END)
            if not pos:
                break
            last_pos = '%s+%dc' % (pos, len(i)) # The only change
            text.tag_add(i, pos, last_pos)
            pos = last_pos
        text.tag_config(i, foreground = symbol_dict[i])
    root.after(1000, check_for_symbols)
    return

The same procedure as followed in the case of words here by me, can be followed, the only change will be in the regex expression that is to be used to detect the symbols.

last_pos = '%s+%dc' % (pos, len(i)) # The only change

The full check_for_symbols function with the necessary changes in place will look like -:

def check_for_symbols(symbol_dict) : # pass symbol dict as argument using lambda construct.
#    symbol dict format-: {keyword : color}
    
    for i in symbol_dict :
        text.tag_remove(i, '1.0', tk.END)
        
        pos = 1.0
        while 1:
            pos = text.search(i, pos, regexp = True, stopindex = tk.END)
            if not pos:
                break
            last_pos = '%s+%dc' % (pos, len(i)) # The only change
            text.tag_add(i, pos, last_pos)
            pos = last_pos
        text.tag_config(i, foreground = symbol_dict[i])
    root.after(1000, check_for_symbols)
    return
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文