DelphiBasics
  Home  |  Delphi .net Home  |  System.IO NameSpace
 .NET Framework
 Namespace References

 System
 System.Collections
 System.Globalization
 System.IO
 
  BinaryReader  Class 
  BinaryWriter  Class 
  BufferedStream  Class 
  Directory  Class 
  DirectoryInfo  Class 
  File  Class 
  FileAccess  Enumeration 
  FileAttributes  Enumeration 
  FileInfo  Class 
  FileMode  Enumeration 
  FileShare  Enumeration 
  FileStream  Class 
  FileSystemWatcher  Class 
  MemoryStream  Class 
  Path  Class 
  SeekOrigin  Enumeration 
  StreamReader  Class 
  StreamWriter  Class 
  StringReader  Class 
  StringWriter  Class 

 Articles and Tutorials

 Overview of .NET
 Delphi and .NET
 Winform Applications
 ASP .Net Applications
 php Web Services
 Framework Collections
 Framework String Handling
 Framework Files and Folders


 
 
  System.IO.StringReader Class
 
 Description
The StringReader class is descended from the abstract TextReader class. It allows a string to be read character by character, or line by line in much the same way as if the string were a text file.
 
The string must contain either Carriage return, Line-feed or both as the means of delimiting the lines. It is a shame that the constructor did not allow a string array to be used as well.
 Syntax
Constructor Create ( Value : String; );
 Methods
Close  Closes the StringReader
Peek  Gives the value of the next character in the string without updating position
Read  Reads the next character or block of characters from the current string
ReadBlock  Reads the next block of characters from the current string
ReadLine  Reads the next line of characters from the current string
ReadToEnd  Reads to the end of the current string


 Microsoft MSDN links
 
System.IO
System.IO.stringreader
 
Delphi Programming © Neil Moffatt . All rights reserved.  |  Home Page