see this example, how to get a first value from comma-seperated string.
string s = "ram,reddy";
string[] Names = (string[])s.Split(',');
Response.Write(Names[0]);
On Fri, Aug 29, 2008 at 12:16 PM, amj1020 <[EMAIL PROTECTED]> wrote:
>
> I need help. I am a novice when is come to VB.net. I using a detagger
> and I need to retrieve the date from the webpage after it has been
> converted. The problem is that i only know how to grab and entire line
> and not just the first column. This is the line:
> 28-AUG-2008,27-AUG-2008,26-AUG-2008,25-AUG-2008
> but I only want the first field.
>
> >
>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"DotNetDevelopment, VB.NET, C# .NET, ADO.NET, ASP.NET, XML, XML Web
Services,.NET Remoting" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://cm.megasolutions.net/forums/default.aspx
-~----------~----~----~----~------~----~------~--~---