如何使用 optparse 解析自定义字符串?

发布于 2024-08-10 16:53:58 字数 123 浏览 3 评论 0原文

如何使用 optparse 而不是命令行参数来解析自定义字符串?

我想解析使用 raw_input() 获得的字符串。 我该如何使用 optparse 呢?

How to parse a custom string using optparse, instead of command line argument?

I want to parse a string that I get from using raw_input().
How can I use optparse for that?

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

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

发布评论

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

评论(2

过度放纵 2024-08-17 16:53:58

optparse 需要一个已按 shell 样式分解的值列表(这就是 argv[1:] 的内容)。要从字符串开始完成相同的操作,请尝试以下操作:

parser = optparse.OptionParser()
# Set up your OptionParser

inp = raw_input("Enter some crap: ")

try: (options, args) = parser.parse_args(shlex.split(inp))
except:
    # Error handling.

parse_args 的可选参数是您在转换后的字符串中替换的位置。

请注意,shlex.split 可能会出现异常,parse_args 也可能出现异常。当您处理来自用户的输入时,明智的做法是预期这两种情况。

optparse expects a list of values that have been broken up shell-style (which is what argv[1:] is). To accomplish the same starting with a string, try this:

parser = optparse.OptionParser()
# Set up your OptionParser

inp = raw_input("Enter some crap: ")

try: (options, args) = parser.parse_args(shlex.split(inp))
except:
    # Error handling.

The optional argument to parse_args is where you substitute in your converted string.

Be advised that shlex.split can exception, as can parse_args. When you're dealing with input from the user, it's wise to expect both cases.

想你的星星会说话 2024-08-17 16:53:58

首先使用 shlex 模块 拆分输入。

>>> import shlex
>>> shlex.split(raw_input())
this is "a test" of shlex
['this', 'is', 'a test', 'of', 'shlex']

Use the shlex module to split the input first.

>>> import shlex
>>> shlex.split(raw_input())
this is "a test" of shlex
['this', 'is', 'a test', 'of', 'shlex']
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文