需要在c#中的字符串中的“单词”后面获取一个字符串

时间:2013-02-21 09:26:02

标签: c# string substring

我在c#中有一个字符串,我必须在字符串中找到一个特定的单词“code”,并且必须在“code”之后得到剩余的字符串。

字符串是

  

“错误说明,代码: - 1”

所以我必须在上面的字符串中找到代码这个词,我必须得到错误代码。 我见过正则表达式,但现在已经清楚地理解了。有什么简单的方法吗?

7 个答案:

答案 0 :(得分:79)

string toBeSearched = "code : ";
string code = myString.Substring(myString.IndexOf(toBeSearched) + toBeSearched.Length);

这样的东西?

也许您应该处理丢失code : ...

的情况
string toBeSearched = "code : ";
int ix = myString.IndexOf(toBeSearched);

if (ix != -1) 
{
    string code = myString.Substring(ix + toBeSearched.Length);
    // do something here
}

答案 1 :(得分:15)

var code = myString.Split(new [] {"code"}, StringSplitOptions.None)[1];
// code = " : -1"

您可以调整要拆分的字符串 - 如果您使用"code : ",则返回数组的第二个成员([1])将包含"-1",使用您的示例。

答案 2 :(得分:9)

更简单的方法(如果您的唯一关键字是“代码”)可能是:

string ErrorCode = yourString.Split(new string[]{"code"}, StringSplitOptions.None).Last();

答案 3 :(得分:2)

使用indexOf()功能

string s = "Error description, code : -1";
int index = s.indexOf("code");
if(index != -1)
{
  //DO YOUR LOGIC
  string errorCode = s.Substring(index+4);
}

答案 4 :(得分:1)

将此代码添加到您的项目中

  public static class Extension {
        public static string TextAfter(this string value ,string search) {
            return  value.Substring(value.IndexOf(search) + search.Length);
        }
  }

然后使用

"code : string text ".TextAfter(":")

答案 5 :(得分:0)

string originalSting = "This is my string";
string texttobesearched = "my";
string dataAfterTextTobeSearch= finalCommand.Split(new string[] { texttobesearched     }, StringSplitOptions.None).Last();
if(dataAfterTextobeSearch!=originalSting)
{
    //your action here if data is found
}
else
{
    //action if the data being searched was not found
}

答案 6 :(得分:0)

string founded = FindStringTakeX("UID:   994zxfa6q", "UID:", 9);


string FindStringTakeX(string strValue,string findKey,int take,bool ignoreWhiteSpace = true)
    {
        int index = strValue.IndexOf(findKey) + findKey.Length;

        if (index >= 0)
        {
            if (ignoreWhiteSpace)
            {
                while (strValue[index].ToString() == " ")
                {
                    index++;
                }
            }

            if(strValue.Length >= index + take)
            {
                string result = strValue.Substring(index, take);

                return result;
            }


        }

        return string.Empty;
    }