查找字符串使用C#文本 [英] Find text in string with C#

查看:129
本文介绍了查找字符串使用C#文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何可以找到特定的字符串中的文本?在那之后,我想创建一个和别的东西之间​​的一个新的字符串。例如...

How can I find given text within a string? After that, I'd like to create a new string between that and something else. For instance...

如果该字符串是:

This is an example string and my data is here

和我想创建一个与任何是与我和就是我怎么会做一个字符串?很抱歉,这是pretty假,但希望这是有道理的。

And I want to create a string with whatever is between "my " and " is" how could I do that? Sorry this is pretty pseudo, but hopefully it makes sense.

推荐答案

使用此功能。

public static string getBetween(string strSource, string strStart, string strEnd)
{
    int Start, End;
    if (strSource.Contains(strStart) && strSource.Contains(strEnd))
    {
        Start = strSource.IndexOf(strStart, 0) + strStart.Length;
        End = strSource.IndexOf(strEnd, Start);
        return strSource.Substring(Start, End - Start);
    }
    else
    {
        return "";
    }
}

如何使用它:

string text = "This is an example string and my data is here";
string data = getBetween(text, "my", "is");

这篇关于查找字符串使用C#文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆