如何展开 RFC 822

发布于 2024-10-03 05:48:15 字数 483 浏览 4 评论 0原文

我正在尝试编写一个 vCard 解析器,但在展开行时遇到问题。 正如您在这里看到的: http://www.faqs.org/rfcs/rfc822.html 查找“展开”,它表示以下所有内容均有效:

Long string<return>
<tab>continue

Long string<return>
<tab>(n*<tab>)continue

Long string<return>
<space>continue

Long string<return>
<space>(n*<space>)continue

我如何展开它?有正则表达式吗?我正在使用 PHP,如果已经编写了一个类,我将使用它:)

I am trying to write a vCard Parser and am having trouble unfolding lines.
As you can see here: http://www.faqs.org/rfcs/rfc822.html look for "unfolding" it says that all the following are valid:

Long string<return>
<tab>continue

Long string<return>
<tab>(n*<tab>)continue

Long string<return>
<space>continue

Long string<return>
<space>(n*<space>)continue

How do I unfold this? Is there a regex for this? I am using PHP if a class has been written I will use that :)

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

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

发布评论

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

评论(1

酒绊 2024-10-10 05:48:15

您可以使用它来删除这些折叠:

$output = preg_replace('/\r\n(?:[ \t]+)/', '', $input);

You could use this to remove those foldings:

$output = preg_replace('/\r\n(?:[ \t]+)/', '', $input);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文