我正在尝试编写一个vCard解析器,并且在展开行时遇到问题.
正如你在这里看到的: http://www.faqs.org/rfcs/rfc822.html寻找“展开”它说以下所有内容都是有效的:
正如你在这里看到的: 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如果已经编写了一个类我将使用它:)
您可以使用它来删除这些折叠:
原文链接:https://www.f2er.com/php/138405.html$output = preg_replace('/\r\n(?:[ \t]+)/','',$input);