VSTRING Library
(c) Vladi Belperchinov-Shabanski "Cade" <cade@biscom.net> 1998-2002
Distributed under the GPL license, see end of this file for full text!
VSTRING library provides vast set of string manipulation features
including dynamic string object that can be freely exchanged with
standard char* type, so there is no need to change function calls
nor the implementation when you change from char* to String (and
vice versa). The main difference from other similar libs is that
the dynamic String class has no visible methods (except operators)
so you will use it as a plain char* but it will expand/shrink as
needed.
VSTRING (VSTRLIB) also provides Perl-like arrays and hashes (VArray
and VTrie). There is and VRegexp class which automates regexp pattern
matching.
Thank you for the attention!
If you find bug or you have note about vstring lib, please feel
free to contact me at:
Vladi Belperchinov-Shabanski "Cade"
<cade@biscom.net>
<cade@datamax.bg>
http://www.biscom.net/~cade
NOTE: vstring is loosely based on `cxstring' lib (c) Ivo Baylov 1998.
NOTE: vstring is distributed standalone as well as a part from vslib. |