vb.net 文本框控件
我在文本框中有文本。内容是“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
伪代码:
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
您可以使用正则表达式来提取您的元素。
You can use a regular expression to extract your elements.