在 PHP 中处理制表符分隔文件中的双制表符
$lineArray = preg_split('/\t\s*(?=([^"]*"[^"]*")*[^"]*$)/', $line);
上面的代码片段用于分割制表符分隔的文件,其中制表符不在双引号内。除了存在双选项卡(缺少字段)的情况外,它工作正常。基本上,当有两个选项卡时,PHP 只能看到一个选项卡。有选项卡宽度选项吗?
$lineArray = preg_split('/\t\s*(?=([^"]*"[^"]*")*[^"]*$)/', $line);
Above code snippet it to split a tab delimited file where tabs are not inside double quotes. It works fine except the cases where there double tabs (missing fields). Basically PHP sees only one tab when there are two. Is there a tab-width option?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
\s 还将匹配制表符,但您显然不希望这样。
应该通过仅匹配非制表符空白来解决此问题。
The \s will also match a tab and you apparently don't want that.
should fix this problem by only matching non-tab whitespace.