在 Vb6 和 C# 中如何获得字符串的倍数
是否有一个命令可以将字符串复制为该字符串或字符的倍数。 Sql 具有复制功能,可以将一个空间复制到多个空间:
replicate(' ', 10000) -- will make 10k spaces.
在 vb6 和 c# 中是否有类似的命令?
Is there a single command that replicates a string into multiples of that string or character. Sql has replicate which can replicate a space for instance into many:
replicate(' ', 10000) -- will make 10k spaces.
Is there a similiar command in vb6 and c#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 C# 中:
在 VB.NET 中:
在 VB6 中:
In C#:
In VB.NET:
In VB6:
要重复实际的字符串,而不仅仅是一个字符(C# 和 VB.Net 的代码相同):
To repeat an actual string, not just one character (code is the same for C# and VB.Net):