英文:
Can we use regular expression in Golang testable example Output comment?
问题
我有一个示例,它执行一些计时操作,并在最后输出结果。由于结果永远不会相同,是否有办法在输出注释中使用正则表达式或类似的东西?
类似下面的方式:
...
// 输出:
// 时间:\d*(秒)
...
谢谢
英文:
I have an example that performs some timing and output the result at the end. Since the result will never be the same, is there a way to use regular expression or something similar in the Output comment?
Something like below:
...
// Output:
// Time: \d*\(s\)
...
Thanks
答案1
得分: 2
我们可以在Golang可测试示例的输出注释中使用正则表达式吗?
不可以。
这必须完全匹配。
英文:
> Can we use regular expression in Golang testable example Output comment?
No.
This must match literally.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论