在 Vb6 和 C# 中如何获得字符串的倍数

发布于 2024-12-11 01:37:16 字数 166 浏览 0 评论 0原文

是否有一个命令可以将字符串复制为该字符串或字符的倍数。 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 技术交流群。

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

发布评论

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

评论(2

如梦亦如幻 2024-12-18 01:37:16

在 C# 中:

string s = new string(' ', 10000);

在 VB.NET 中:

Dim s = New String(" ", 10000)

在 VB6 中:

s = String$(10000, " ")

In C#:

string s = new string(' ', 10000);

In VB.NET:

Dim s = New String(" ", 10000)

In VB6:

s = String$(10000, " ")
妄想挽回 2024-12-18 01:37:16

要重复实际的字符串,而不仅仅是一个字符(C# 和 VB.Net 的代码相同):

//Repeat "asd" 100 times
String.Join("", Enumerable.Repeat("asd", 100).ToArray())

To repeat an actual string, not just one character (code is the same for C# and VB.Net):

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