|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
string tokenizerI can't find the then class for dividing strings into tokens by a specific
delimeter "romy" <royal***@Powerup1.com> wrote in message news:uvwNKuweFHA.1680@TK2MSFTNGP09.phx.gbl... Have a look at String.Split()> I can't find the then class for dividing strings into tokens by a specific > delimeter > > -- Al Reid String.Split(...)
-- Show quoteHide quoteBest regards, Carlos J. Quintero MZ-Tools: Productivity add-ins for Visual Studio .NET, VB6, VB5 and VBA You can code, design and document much faster. Free resources for add-in developers: http://www.mztools.com "romy" <royal***@Powerup1.com> escribió en el mensaje news:uvwNKuweFHA.1680@TK2MSFTNGP09.phx.gbl... >I can't find the then class for dividing strings into tokens by a specific >delimeter > Romy,
Beside the one told there is as well Split and Regex.split I hope this helps, Cor Romy,
In addition to the other comments on Split, there are three Split functions in .NET: Use Microsoft.VisualBasic.Strings.Split if you need to split a string based on a specific word (string). It is the Split function from VB6. Use System.String.Split if you need to split a string based on a collection of specific characters. Each individual character is its own delimiter. Use System.Text.RegularExpressions.RegEx.Split to split based on matching patterns. Hope this helps Jay Show quoteHide quote "romy" <royal***@Powerup1.com> wrote in message news:uvwNKuweFHA.1680@TK2MSFTNGP09.phx.gbl... |I can't find the then class for dividing strings into tokens by a specific | delimeter | | |
|||||||||||||||||||||||