How to use the iterator to traverse file information _ PHP Tutorial

Source: Internet
Author: User
Use the iterator to traverse detailed file information. 1. the row copy code of the iteration file is as follows: publicstaticIEnumerablestringReadLines (stringfileName) {using (TextReaderreaderFile. OpenText (fileName) {stringline; if ( 1. iterate the row of the file

The code is as follows:


Public static IEnumerable ReadLines (string fileName)
{
Using (TextReader reader = File. OpenText (fileName ))
{
String line;
If (line = reader. ReadLine ())! = Null)
{
Yield return line;
}
}
}
Static void Main ()
{
Foreach (string line in Iterator. ReadLines (""))
{
Console. WriteLine (line );
}
}


2. use the iterator and predicate to filter rows in the file.

The code is as follows:


Public static IEnumerable Where (IEnumerable Source, Predicate Predicate)
{
If (source = null | predicate = null)
{
Throw new ArgumentNullException ();
}
Return WhereImplemeter (source, predicate );
}
Private static IEnumerable WhereImplemeter (IEnumerable Source, Predicate Predicate)
{
Foreach (T item in source)
{
If (predicate (item ))
{
Yield return item;
}
}
}
Static void Main ()
{
IEnumerable Lines = File. ReadAllLines (@ "your file name ");
Predicate Predicate = delegate (string line)
{
Return line. StartsWith ("using ");
};
Foreach (string str in where (lines, predicate ))
{
Console. WriteLine (str );
}

}

The alias code is as follows: public static IEnumerablestring ReadLines (string fileName) {using (TextReader reader = File. OpenText (fileName) {string line; if (...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.