VBScript 国际化指南/最佳实践
愿大家平安!
我一直致力于国际化,我想要 VBScript 的指南。有很多关于 Java 和 JavaScript 的材料,但在对 VBS 进行广泛研究之后,除了一些函数(如 format、formatDate 等)的零碎内容之外,我找不到任何东西,而且没有最佳实践/指南。
我应该怎么办?
Peace be upon you all!
I have been working on Internationalization and I want guidelines for VBScript. There is a lot of material for Java and JavaScript, but after extensive research on VBS, I couldnt find anything except bit and pieces of some functions like format, formatDate etcetera and no best practices/guidelines.
What should I do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
重要的事情之一是使用已经存在的内容,例如,您可以使用
GetLocaleInfo
API。像这样的代码:
正如这里找到的
那样更一般,我没有太多有 VBS 国际化经验,但您可以在此处找到一些灵感
One of the important things is to use what already exists, for instance, you can use the
GetLocaleInfo
API.Something like this code:
As found here
To be more general, I don't have much experience on VBS Internationalization but you can find some inspiration here