[ Blue82 @ 22.11.2008. 00:25 ] @
U VB6 je bilo... Code: string="kolica" deo_stringa=left(string,4) kako u VB.NET? |
[ Blue82 @ 22.11.2008. 00:25 ] @
[ BezPanike @ 22.11.2008. 07:15 ] @
Slično:
Code: deo_stringa = Microsoft.VisualBasic.Left(string, 4) [ Blue82 @ 22.11.2008. 08:57 ] @
Hvala!
[ MarkoBalkan @ 22.11.2008. 09:18 ] @
string="kolica"
deo_stringa=substring(string,1,4) mislim da tako ide. pogledaj substring u .net-u. [ Shadowed @ 23.11.2008. 23:20 ] @
Code: string="kolica" deo_stringa=string.Substring(0,4) Copyright (C) 2001-2025 by www.elitesecurity.org. All rights reserved.
|