本文介绍了如何删除文本框中的最后一个字符?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在我的文本框中,输入一些数字,例如123,456,789,.如果我输入的数字的最后一个字符是,",那么我需要将其删除(,"),否则我不应该删除任何内容
我怎么做?请帮我解决.
谢谢.
In my textbox I enter some numbers like 123,456,789,. If the last character of my entered number is "," then I need to remove it (",") otherwise I shouldn''t remove anything
How do I do that? Please help me with a solution.
Thanks.
推荐答案
if (textBox1.Text.EndsWith('',''))
textBox1.Text = textBox1.Text.SubString(0, textBox1.Text.Length -1);
这篇关于如何删除文本框中的最后一个字符?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!