Returns the number of arguments in an HScript-style list of arguments.

Usage

argc(line)

Standard parsing is done, no variable expansion is done on the line.

Examples

 

argc("This has four arguments")
Returns 4, as that is the number of space delimited words.

 

 

argc("Quoting 'makes this one arg'")

Returns two as the quotes cause the last four words to count as a single word.

 

argc는 리스트의 총 인수 갯수를 출력해준다

 

ex) argc(primgrouplist("/obj/box/voronoifracture1"))

 

 

+ Recent posts