AzKay Posted June 19, 2010 Posted June 19, 2010 (edited) #include <File.au3> MsgBox(0, "", _FileCountLines("FFL.txt"))FFL.txt has 64636 lines, _FileCountLines() returns 164636Any ideas?FFL.zip Edited June 19, 2010 by AzKay # MY LOVE FOR YOU... IS LIKE A TRUCK- #
water Posted June 19, 2010 Posted June 19, 2010 (edited) The _FileCountLines function determines the number of lines by counting the @LF characters.How do you count the number of lines and get the result of 64636?Edit: I used Notepad++ and I get 164636 lines as well. Edited June 19, 2010 by water My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
AzKay Posted June 19, 2010 Author Posted June 19, 2010 The _FileCountLines function determines the number of lines by counting the @LF characters.How do you count the number of lines and get the result of 64636?SciTE gives me 64636, so I should play around with the _FileCountLines() function, then? # MY LOVE FOR YOU... IS LIKE A TRUCK- #
UEZ Posted June 19, 2010 Posted June 19, 2010 (edited) When I open the text file with appl. below I get following amount of lines: Notepad++: 164637 Windows Editor: 164637 AutoIt Test Script: 164636 ScieTE: (1)64637 -> SciTE cannot display more than 99999 line properly. It will cut the 1st digit. BR, UEZ Edited June 19, 2010 by UEZ Please don't send me any personal message and ask for support! I will not reply! Selection of finest graphical examples at Codepen.io The own fart smells best! ✌Her 'sikim hıyar' diyene bir avuç tuz alıp koşma!¯\_(ツ)_/¯ ٩(●̮̮̃•̃)۶ ٩(-̮̮̃-̃)۶ૐ
water Posted June 19, 2010 Posted June 19, 2010 SciTE gives me 64636, so I should play around with the _FileCountLines() function, then?Seems to be a limitation of SciTE. AutoIt and Notepad++ give the "correct" number of 164636. My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
water Posted June 19, 2010 Posted June 19, 2010 (edited) If you scroll to line number 99999 you'll see that SciTE shows 100000 as 00000. So SciTE can only display line numbers up to 99999. Edited June 19, 2010 by water My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
AzKay Posted June 19, 2010 Author Posted June 19, 2010 Ah, Thanks. # MY LOVE FOR YOU... IS LIKE A TRUCK- #
GEOSoft Posted June 19, 2010 Posted June 19, 2010 (edited) The problem, if there is one, may be someplace else. I use this one to count lines and I get the same return Func _File_CountLines($sFile) If FileExists($sFile) Then $sFile = FileRead($sFile) StringRegExpReplace($sFile, "\v{1,2}|$", "") Return @Extended EndFunc ;<==> _File_CountLines() Edited June 19, 2010 by GEOSoft George Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.*** The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number. Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else. "Old age and treachery will always overcome youth and skill!"
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now