如何从字符串中分割数据?

Deb*_*ode 0 c# string split

我怎样才能从字符串中分割数据?

我有这样的字符串,

Url=http://www.yahoo.com UrlImage=http://l.yimg.com/a/i/ww/met/yahoo_logo_in_061509.png UrlTitle=Yahoo! India UrlDescription=Welcome to Yahoo!, the world's most visited home page. Quickly find what you're searching for, get in touch with friends and stay in-the-know with the latest news and information.
Run Code Online (Sandbox Code Playgroud)

我想要将这些信息拆分为

http://www.yahoo.com

http://l.yimg.com/a/i/ww/met/yahoo_logo_in_061509.png

Yahoo! India

Welcome to Yahoo!, the world's most visited home page. Quickly find what you're searching for, get in touch with friends and stay in-the-know with the latest news and information.
Run Code Online (Sandbox Code Playgroud)

如何将上面的字符串分成这四个部分并保存到每个部分的临时变量中?

string url = http://www.yahoo.com

string urlImage = http://l.yimg.com/a/i/ww/met/yahoo_logo_in_061509.png

string urlTitle = Yahoo! 印度

string urlDescription =欢迎来到雅虎!这是世界上访问量最大的主页.快速找到您要搜索的内容,与朋友联系并随时了解最新消息和信息.

我怎样才能做到这一点?

Mat*_*vey 6

假设您输入字符串的格式不会改变(即键的顺序),您可以尝试这样的事情:

var input = "Url:http://www.yahoo.com UrlImage:http://l.yimg.com/a/i/ww/met/yahoo_logo_in_061509.png UrlTitle:Yahoo! India UrlDescription:Welcome to Yahoo!, the world's most visited home page. Quickly find what you're searching for, get in touch with friends and stay in-the-know with the latest news and information."

// Convert the input string into a format which is easier to split...
input = input.Replace("Url=", "")
             .Replace("UrlImage=", "|")
             .Replace("UrlTitle=", "|")
             .Replace("UrlDescription=", "|");

var splits = input.Split("|");

string url         = splits[0]; // = http://www.yahoo.com
string image       = splits[1]; // = http://l.yimg.com/a/i/ww/met/yahoo_logo_in_061509.png
string title       = splits[2]; // = Yahoo! India
string description = splits[3]; // = Welcome to Yahoo!, the world's...
Run Code Online (Sandbox Code Playgroud)