从字符串中取出括号对中的文本

发布于 2025-01-10 14:34:00 字数 166 浏览 0 评论 0原文

是否可以将括号中的文本从字符串中取出到列表中,将非括号内的文本放在另一个列表中,并且两个列表都嵌套在同一个列表中?这就是我的意思:

"hello{ok}why{uhh}so" --> [[“你好”,“为什么”,“所以”],[“好吧”,“呃”]]

Is it possible to take out text in pairs of brackets out of a string into a list, with the non-bracketed text in another list, with both lists being nested in the same list? This is what I mean:

"hello{ok}why{uhh}so" --> [["hello","why","so"],["ok","uhh"]]

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

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

发布评论

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

评论(2

情话难免假 2025-01-17 14:34:00

根据您共享的示例,使用 re 模块这非常容易。但是,如果您的文本很大,您将不得不考虑临时解决此解决方案。使用 re,您可以执行如下操作,

import re
raw_text = "hello{ok}why{uhh}so"
result = [re.split(r"{[A-Za-z]*}", raw_text),re.findall(r"{([A-Za-z]*)}",raw_text)]
print(result)

产生结果

[['hello', 'why', 'so'], ['ok', 'uhh']]

As per the sample you shared, this is quite easy with re modules. However, if your text is huge, you will have to think about improvising this solution. Using re, you can do something like below

import re
raw_text = "hello{ok}why{uhh}so"
result = [re.split(r"{[A-Za-z]*}", raw_text),re.findall(r"{([A-Za-z]*)}",raw_text)]
print(result)

produces a result

[['hello', 'why', 'so'], ['ok', 'uhh']]
裸钻 2025-01-17 14:34:00

下面的代码可能会帮助你

input_str = "hello{ok}why{uhh}so"
list1, parsed_parentheses = [], []

for index in range(len(input_str)):
    if input_str[index] == "{":
        parsed_parentheses.append(input_str[index])
        substr = ""
        continue
    else:
        if parsed_parentheses == []:
            continue
        if input_str[index] == "}":
            parsed_parentheses.append(input_str[index])
            list1.append(substr)
        if "{" == parsed_parentheses[-1]:
            substr += input_str[index]

input_str = input_str.replace("{", "-").replace('}', "-").split('-')
list2 = list(set(input_str) - set(list1))
result = [list2, list1]

它会产生以下结果

[['hello', 'why', 'so'], ['ok', 'uhh']]

Following piece of code may help you

input_str = "hello{ok}why{uhh}so"
list1, parsed_parentheses = [], []

for index in range(len(input_str)):
    if input_str[index] == "{":
        parsed_parentheses.append(input_str[index])
        substr = ""
        continue
    else:
        if parsed_parentheses == []:
            continue
        if input_str[index] == "}":
            parsed_parentheses.append(input_str[index])
            list1.append(substr)
        if "{" == parsed_parentheses[-1]:
            substr += input_str[index]

input_str = input_str.replace("{", "-").replace('}', "-").split('-')
list2 = list(set(input_str) - set(list1))
result = [list2, list1]

It produces the following result

[['hello', 'why', 'so'], ['ok', 'uhh']]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文