문제

This might sound useless, but just for the sake of information (and for fun to be honest :) )

Is there a way to find in Flash Builder the amount of lines written in a Flex project?

도움이 되었습니까?

해결책

There is a good answer here on how to do the same with IntelliJ and Java: How to count lines of Java code using IntelliJ IDEA?

where the 'Find In Project' feature is used. For IntelliJ this is:

Ctrl+Shift+F -> Text to find = '\n+' -> Find

The search must be set to find based on a regular expression. '\n+' indicates to look for lines that are not empty

So you can adopt this method to FlashBuilder / Eclipse - I am sure it will have a similar feature. Try Ctrl+H.

Alternatively, load your Flex project into IntelliJ.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top