|
|
|
TStringList object is used to store and manipulate a list of strings.
TStringList implements methods from Delphi
You Can:
Load/Save from/to File // Load/save external file to a TSTringList
IndexOf // Returns the position of a string in the list.
Sort // Sorting the StringList
Count // Indicates the number of strings in the list.
Clear // Deletes all the strings from the list.
Delete // Removes the string specified by the Index parameter
Insert // Inserts a string at the position specified by Index.
Add // Adds a new string to the end of list.
<?
$userfile = 'somefile.tmp';
require("ABClasses.inc");
if (!$SL->LoadFromFile($userfile)) echo $SL->GetLastError();
for ($l=0;$l<$SL->Count();$l++ )
echo $SL->Strings[$l].'<br>';
?> |
|
| PHP5 URL Object Categories : PHP, PHP Classes, URLs, Strings | | | STR - a Perl-like string manipulator class - The str class provides 4 perl-like methods for manipulating strings and
other scalar variables. Categories : PHP, PHP Classes, Perl, Strings | | | Compare two texts and display a block of text with the differences between them. Categories : PHP, PHP Classes, Filesystem, Strings, Arrays | | | Filter - A simple class that lets you use multiple functions to create custom filters. Categories : PHP, PHP Classes, Strings | | | file class , uploade file , download file already uploaded on another website Categories : PHP, PHP Classes, Filesystem, Web Services | | | Authorize.net AIM Interface Class v1.0.0 Categories : PHP, PHP Classes, Ecommerce, Payment Gateways | | | A simple class with some HTML output functions that would come in handy for consistent page layout etc. Categories : PHP, PHP Classes, HTML and PHP, HTML, Navigation | | | crop and resize image class using gd library function Categories : PHP, PHP Classes, GD image library, Graphics | | | Excel class in PHP Categories : PHP, PHP Classes, Excel | | | News management class Categories : PHP, PHP Classes, Beginner Guides | | | Avoiding or Detecting high bit characters in a string. Useful when you want to create a valid RSS feed Categories : PHP, Strings, Unicode, Regexps, Rich Site Summary (RSS) | | | Expose - PHP template engine, supports server and client-sided caching,a plugin system, multiple languages, template script language is based on PHP itself. Categories : PHP, PHP Classes, Templates, Complete Programs | | | Simple Template Class/Example Categories : PHP, Templates, PHP Classes | | | Allows you to parse a deliniated string and put the individual fields in a SELECT option in a form Categories : HTML, PHP, Strings | | | MS Word Mail Merge Automation (COM) Categories : PHP, PHP Classes, COM | |
|
|
|