bit more clearer
Let me be bit cleaer. I found a regex framework, i can use that probably for regex.
I need to translate a piece of c# code which works for me
NameValueCollection postToLogin = new NameValueCollection();
postToLogin.Add("login", login);
postToLogin.Add("passwd", credential.Password);
webClient.Headers[HttpRequestHeader.UserAgent] = _userAgent;
webClient.Headers[HttpRequestHeader.Referer] = _loginPage;
webClient.Encoding = Encoding.UTF8;
webClient.Headers[HttpRequestHeader.Cookie] = webClient.ResponseHeaders[HttpResponseHeader.SetCookie];
webClient.UploadValues(_authUrl, postToLogin);
string cookie = webClient.ResponseHeaders[HttpResponseHeader.SetCookie];
any ideas please
--CH