string one=numeric, string2 =very long text split in lines, need2 find string one val

Hello

For example,
String one= 201209032213567545 How do i find the value of string1 and want to get the jpg url and the website url in a variable

String two =
plane201208241636227031,6.42,0.00,0.00,0.50,0.50,0.50,-0.71,0.00,0.00,0.71,http://images2.fanpop.com/image/photos/8800000/Baby-Teddy-Bear-sweety-babies-8886559-1200-1200.jpg,,

sphere201208241636232031,0.00,2.87,0.00,1.00,1.00,1.00,0.00,0.00,0.00,1.00,EarnCrypto.com | Join EarnCrypto,

cube201208241636236718,1.60,5.57,6.76,-2.63,1.00,1.30,0.38,0.14,-0.58,0.70,http://static.splashnology.com/articles/Meet-The-Future-HTML5-Demos/main.jpg,,

plane201208240323165685,4.23,4.73,0.00,0.50,0.50,0.50,0.00,0.71,-0.71,0.00,EarnCrypto.com | Join EarnCrypto,

plane201209032213567545,-5.37,-0.89,0.00,0.50,0.50,0.50,0.00,0.71,-0.71,0.00,http://www.dan-dare.org/FreeFun/Images/CartoonsMoviesTV/WaltDisneyWallpaper800.jpg,http://google.com,

plane201212131113027701,-6.24,4.63,0.00,0.50,0.50,0.50,0.00,0.71,-0.71,0.00,http://www.lg15.com/lgpedia/images/thumb/5/53/Jess7.jpg/400px-Jess7.jpg,,

plane201301160034054757,0.57,-1.03,0.00,0.50,0.50,0.50,0.00,0.71,-0.71,0.00,Hd Backgrounds | ManyBackgrounds.com,

If you are not clear, see the image below of what i need

Am I right you have the String one value and want to find it in a bunch of urls to get the right url and call it?

You should look into C# Regex: Regix doc

kk, i am using Regex and my current situation is -

if(Regex.IsMatch(result, clickedObject)){
						Debug.Log("Match Found");
					}

Match found is coming in console

Now, value of clickedObject = plane201301160034054757
and value of result (split by \n) = plane201208241636227031,6.42,0.00,0.00,0.50,0.50,0.50,-0.71,0.00,0.00,0.71,http://images2.fanpop.com/image/photos/8800000/Baby-Teddy-Bear-sweety-babies-8886559-1200-1200.jpg,,

sphere201208241636232031,0.00,2.87,0.00,1.00,1.00,1.00,0.00,0.00,0.00,1.00,EarnCrypto.com | Join EarnCrypto,

cube201208241636236718,1.60,5.57,6.76,-2.63,1.00,1.30,0.38,0.14,-0.58,0.70,http://static.splashnology.com/articles/Meet-The-Future-HTML5-Demos/main.jpg,,

plane201208240323165685,4.23,4.73,0.00,0.50,0.50,0.50,0.00,0.71,-0.71,0.00,EarnCrypto.com | Join EarnCrypto,

plane201209032213567545,-5.37,-0.89,0.00,0.50,0.50,0.50,0.00,0.71,-0.71,0.00,http://www.dan-dare.org/FreeFun/Images/CartoonsMoviesTV/WaltDisneyWallpaper800.jpg,http://google.com,

plane201212131113027701,-6.24,4.63,0.00,0.50,0.50,0.50,0.00,0.71,-0.71,0.00,http://www.lg15.com/lgpedia/images/thumb/5/53/Jess7.jpg/400px-Jess7.jpg,,

plane201301160034054757,0.57,-1.03,0.00,0.50,0.50,0.50,0.00,0.71,-0.71,0.00,Hd Backgrounds | ManyBackgrounds.com,

Now i want the value last 2 values in 2 variables
string var1 = Hd Backgrounds | ManyBackgrounds.com
string var2 = http://sco7.com

How do i get this ? Pattern is from where the string starts is from the name we matched and after 11 commas i get value of var1 and after 12 commas i get value of var2…

result achieved, thanks

here is the example code:

string myString=“plane201301160034054757,0.57,-1.03,0.00,0.50,0.50,0.50,0.00,0.71,-0.71,0.00,http://www.hdwallpapersarena.com/wp-...ttp://sco7.com,”;
string[ ] namesArray = myString.Split(‘,’);
print (namesArray[11]);