The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
402 views

Count number of lines displayed (not newlines) in an HTML textarea without jQuery? [duplicate]

Possible Duplicate: How to get number of rows in <textarea >? I have a textarea and I write 7 lines in it with only 2 new line character like below, just imagine the following code ...
1
vote
1answer
102 views

How to check for increase in LOC on commit?

I've been tasked with finding a way of reporting whenever the LOC/file size of certain files in our project increases when someone tries to commit via SVN. ie. if a file has 26 LOC and a developer ...
5
votes
4answers
754 views

Is there a way in Matlab to determine the number of lines in a file without looping through each line?

Obviously one could loop through a file using fgetl or similar function and increment a counter, but is there a way to determine the number of lines in a file without doing such a loop?
0
votes
1answer
336 views

Line Count (File Qty) from Listbox Items

Here is the current code I am using to add files and check the number of lines in each file that was selected (file qty). This is also added into a seperate listbox for viewing. Dim selectedItems = ...
3
votes
3answers
608 views

(Python) Counting lines in a huge (>10GB) file as fast as possible

I have a really simple script right now that counts lines in a text file using enumerate(): i = 0 f = open("C:/Users/guest/Desktop/file.log", "r") for i, line in enumerate(f): pass print i + 1 ...
1
vote
2answers
979 views

Lines of Code count for Flex in Eclipse

How to get the SLOC count for the Flex code in Eclipse? Is there a plug-in similar to "Metrics" for finding information about the Flex porject?
1
vote
6answers
79 views

Line counting and abberant results

I'm writing a utility to count the lines in a given file via the Unix command line. Normally this would be dead simple for me, but apparently I'm having a major off night. The goal of this program ...
0
votes
1answer
42 views

Lines counted raw or nonblank noncomment

When the size of a code base is reported in lines, is it more usual/standard to report raw wc count, or nonblank noncomment lines? I'm not asking which measure should be used, only, if I see a number ...
0
votes
5answers
5k views

Program to read a code and count the number of lines in it,do not include comments and blank lines in count

I am trying to create a program which, given an input file, returns the count of all the lines of code in the input file, excluding blank lines and comment lines. I have written the following code, ...
11
votes
2answers
312 views

D2010 compiled line count discrepancy

When building a project there are two places where source line count is reported: On the compile progress dialog Under Project | Information In Delphi 2007 these two numbers were identical for the ...
9
votes
4answers
439 views

Why does line count change so much from D2007 to D2010?

Our app at work is a huge project with over 3000 units, weighing in about 3.5 million lines of code. ...or at least it was when we were compiling it under D2007. We recently updated to D2010, and ...
3
votes
2answers
2k views

How to get the current open file line in python?

Suppose you open a file, and do an seek() somewhere in the file, how do you know the current file line ? (I personally solved with an ad-hoc file class that maps the seek position to the line after ...
221
votes
20answers
97k views

How do you count the lines of code in a Visual Studio solution?

Is it possible to find the number of lines of code in an entire solution? I've heard of MZ-Tools, but is there an open source equivalent?
142
votes
18answers
77k views

How to get line count cheaply in Python?

I need to get a line count of a large file (hundreds of thousands of lines) in python. What is the most efficient way both memory- and time-wise? At the moment I do: def file_len(fname): with ...
10
votes
8answers
24k views

Fastest way to find the number of lines in a text (C++)

I need to read the number of lines in a file before doing some operations on that file. When I try to read the file and increment the line_count variable at each iteration until i reach eof. It was ...