i have a string suppose that one
http://www.whitelabelhosting.co.uk/flight-search.php?dept=any&journey=R&DepTime=0900
and now what i am doing is here in c sharp
string linkmain = link.Replace("&DepTime=", "&DepTime=" + journey);
but the time is being added as 09000900
and in case of
string linkmain = link.Replace("Journey=", "Journey="+journey);
journey added as RR
so i have to get the value of R that is after Journer=? AND deptTime=?
that are not same every time so how to get them during replace as they are present just after where ? sign is marked
this is a post operation so parameter are different like
journey :
R
M
O
and time :
0900 , 1200 , 0400