asp.net中如何分割字符串数字和字符
我得到这样的id(存储过程中的最大id)“100254A”(它是字符串), 现在我可以在生成下一个字符串(如 100254B)后拆分字符串“100254”和“A”。 如何编写代码在100255A之后生成下一个字符串,例如100254C,...100254Z将会出现,请给我任何建议
谢谢 赫曼斯
I am getting id like this(max id in Storedprocedure) "100254A"(it is string),
now i can split the string "100254" and "A" after generate the next string like 100254B.
how to write the code generate the next strings like 100254C,...100254Z after 100255A will coming pls give me any suggestion
Thank u
hemanth
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
也许这可以帮助:
Maybe this can help:
使用 子字符串 函数。
Use substring function.
试试这个希望对你有帮助
try this hope it will help You