how can i split this "6/30/2008" to get only
ASP.NET
5
Posts
4
Posters
0
Views
1
Watching
-
use "split" function ....
Thanks, Arindam D Tewary
-
string s="6/30/2008"; string [] s1= s.split('/'); console.writeline(s1[2].ToString());
Best Regards ----------------- Abhijit Jana Check Out My Latest Article Java.NET : Integration of Java and .NET[^] "Success is Journey it's not a destination"
-
DateTime m = new DateTime(2008,03,21); int s = m.Year;
Sathya
-
DateTime m = new DateTime(2008,03,21); int s = m.Year;
Sathya