gpt4 book ai didi

vb.net - 在 VB.NET 中按 ""分割字符串

转载 作者:行者123 更新时间:2023-12-02 04:51:41 25 4
gpt4 key购买 nike

假设这是我的字符串:

1 2 3

我想用“”(空格)分割字符串并每次显示字符串的一部分。

最佳答案

这将满足您的需要:

Dim str As String = "1 2 3"
Dim strarr() As String
strarr = str.Split(" "c)
For Each s As String In strarr
MessageBox.Show(s)
Next

关于vb.net - 在 VB.NET 中按 ""分割字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11118896/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com