A strange problem of tstringlist. Count in Delphi and Its Solution

Source: Internet
Author: User

The data in the tstringlist is obtained by Directly Reading text files, or by using the idtcphttp protocol from the web page of the website.

VaR shtml: tstringlist;

Shtml: = tstringlist. Create;
Shtml. Add (data );
Icouter: = shtml. count;

Although the data contains multiple lines of text, the value of icouter is 1! To bypass this issue, add a Momo control and modify it to the following statement:

Memohtml. lines. Clear;
Memohtml. Text: = shtml. text;
Icouter: = memohtml. lines. count;

The number of lines in the text can be obtained correctly. Further analysis shows that tstringlist. Count cannot obtain the correct line as long as the string obtained from a text file contains a carriage return or line break.

Number. I don't know whether this is the feature or the Delphi7.0 bug?

Solution:

Shtml. Text: = (data );
Icouter: = shtml. count;

You can. The tstringlist. Add method does not handle carriage return line breaks.

Computer Learning Network http://www.why100000.com
Mesh Zhang Qing 2007-9-18

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.