c# – 连接特殊字符“ – ”的相邻字符

前端之家收集整理的这篇文章主要介绍了c# – 连接特殊字符“ – ”的相邻字符前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用c#.net开发一个应用程序,其中我需要如果用户输入的输入包含字符’ – ‘(连字符),那么我想连接连字符( – )的直接邻居,例如,如果用户输入
A-B-C then i want it to be replaced with ABC
AB-CD then i want it to be replaced like BC
ABC-D-E then i want it to be replaced like CDE
AB-CD-K then i want it to be replaced like BC and DK both separated by keyword and

得到这个后,我必须准备我的查询数据库.

我希望我能解决问题,但如果需要更多澄清,请告诉我.
任何帮助将不胜感激.

谢谢,
Devjosh

解决方法

未经测试,但这应该可以解决问题,或者至少引导您朝着正确的方向前进.
private string Prepare(string input)
{
    StringBuilder output = new StringBuilder();
    char[] chars = input.tocharArray();
    for (int i = 0; i < chars.Length; i++)
    {
        if (chars[i] == '-')
        {
            if (i > 0)
            {
                output.Append(chars[i - 1]);
            }
            if (++i < chars.Length)
            {
                output.Append(chars[i])
            }
            else
            {
                break;
            }
        }
    }
    return output.ToString();
}

如果希望每对在数组中形成单独的对象,请尝试以下代码

private string[] Prepare(string input)
{
    List<string> output = new List<string>();
    char[] chars = input.tocharArray();
    for (int i = 0; i < chars.Length; i++)
    {
        if (chars[i] == '-')
        {
            string o = string.Empty;
            if (i > 0)
            {
                o += chars[i - 1];
            }
            if (++i < chars.Length)
            {
                o += chars[i]
            }
            output.Add(o); 
        }
    }
    return output.ToArray();
}
原文链接:https://www.f2er.com/csharp/243128.html

猜你在找的C#相关文章