vb.net 文本框控件

发布于 2024-09-29 20:47:25 字数 138 浏览 1 评论 0原文

我在文本框中有文本。内容是“10/BSC/01”。

“10”=当年

“BSC”=部门

“01”=学生的卷号

如果我按下命令按钮,“01”应该增加而不影响其他字段。

我应该怎么办 ?

I have text in a textbox. The content is "10/BSC/01".

"10" = current year

"BSC" = department

"01" = the roll number of student

If I press a command button the "01" should be incremented without affecting the other fields.

What should I do ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

冷…雨湿花 2024-10-06 20:47:25

伪代码:

dim arry = textbox.text.split("/")
暗淡 num = ctype(arry(2),int)
数字 +=1
numstr = num.tostring(前缀为0)
textbox.text = arry(0) + "/" + arry(1) + "/" + numstr

pseudocode:

dim arry = textbox.text.split("/")
dim num = ctype(arry(2),int)
num +=1
numstr = num.tostring(prefix with 0)
textbox.text = arry(0) + "/" + arry(1) + "/" + numstr

灯角 2024-10-06 20:47:25

您可以使用正则表达式来提取您的元素。

Dim input As String = "10/BSC/01"
Dim matches As MatchCollection = Regex.Matches(input, "(\d+)/(\w+)/(\d+)")

Dim year As Integer = Integer.Parse(matches(0).Groups(1).Value)
Dim course As String = matches(0).Groups(2).Value
Dim rollNumber As Integer = Integer.Parse(matches(0).Groups(3).Value)

Dim result As String = String.Format("{0}/{1}/{2}", year + 1, course, rollNumber)

You can use a regular expression to extract your elements.

Dim input As String = "10/BSC/01"
Dim matches As MatchCollection = Regex.Matches(input, "(\d+)/(\w+)/(\d+)")

Dim year As Integer = Integer.Parse(matches(0).Groups(1).Value)
Dim course As String = matches(0).Groups(2).Value
Dim rollNumber As Integer = Integer.Parse(matches(0).Groups(3).Value)

Dim result As String = String.Format("{0}/{1}/{2}", year + 1, course, rollNumber)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文