本文介绍了将全名转换为缩写名的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述


我的qn是我在一个文本框中输入了全名,我想在单击提交"按钮时在另一个文本框中显示简称.
例如:-alia ankit sahoo
结果应该是a.a.sahoo


my qn is i have a written a full name in one text box i want to display the short name in another textbox when clicking on submit button.
for e.g:-alia ankit sahoo
result should be a.a.sahoo

推荐答案

string s = "alia ankit sahoo";
string[] words = s.Split(' ');
for (int i = 0; i < words.Length - 1; i++)
    {
    words[i] = words[i].Substring(0, 1);
    }
s = string.Join(".", words);



String[] strShortName = TextBox1.Text.Split(' ');

string str1 = "";
for (Int16 i = 0; i < strShortName.Length; i++)
{
    if (i < 2)
    {
        str1 = str1 + strShortName[i].ToString().Substring(0,1) + ".";
    }
    else
    {
        str1 = str1 + strShortName[i];
    }
}
TextBox2.Text = str1;


这篇关于将全名转换为缩写名的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-19 18:59