使用 php 生成 Excel,将单元格格式设置为字符串数字等

发布于 2024-09-09 01:42:38 字数 78 浏览 2 评论 0原文

我正在使用 php 生成一个 excel 文件。

无论带有前导零的字符串(例如 0234)如何转换为 234,都会创建该文件。

I am generating an excel file using php.

The file gets created how ever strings with leading zeros example 0234 get converted to 234.

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

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

发布评论

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

评论(1

绿萝 2024-09-16 01:42:38

您想要将数字格式设置为文本

Range("A1").Select
Selection.NumberFormat = "@"

“@”

是文本格式的值。

应该显示前导 0。

我希望这有帮助;)

you want to set the number format to text

Range("A1").Select
Selection.NumberFormat = "@"

"@"

is the value for Text Format.

That should display leading 0's.

I hope that helps ;)

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