仅对连续 5 个文件触发循环
我正在尝试从多个 html 文件创建一个 html,但这不是我的问题,因为这工作正常。问题是,我到目前为止编写的代码是将多个 html 文件写入一个 html 文件,但我只想将 5 个 html 合并为一个。如果将生成的一个 html 文件包含超过 5 个 html 文件,那么它应该创建一个新的 html 文件,等等......明白了吗?
I am trying to create a html out of several html files, but that's not my problem because this is working fine. The Problem is, that the Code I have written so far is writing all the several html files into one single html, but I only want to combine 5 html into one. If the one html file, which will be generated contains more then 5 html files, then it should create a new html file and so one...get it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这假设您想要 t1.html、t2.html 等。
This assumes that you want t1.html, t2.html etc.
创建一个计数变量,在循环中递增它,并在达到 5 后使用
break
语句中断。请参阅:http://tldp.org/LDP/abs/html/loopcontrol.html< /a>
Create a counting variable, increment it in the loop, and break after it reaches 5 using the
break
statement.See this: http://tldp.org/LDP/abs/html/loopcontrol.html