문제

What does <;._1 mean?

data=:',MARY,PATRICIA,LINDA,BARBARA'

<;._1 data
도움이 되었습니까?

해결책

;. is cut: u ;. x y

_1 (x) means "split by the first character"; which is , in this case

< (u) is the verb to apply to each "split". < is box

data (y) is where you apply the cut.

In other words: "Box each split that is made by cutting data at ,s".

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