What's the fastest/most efficient way to count lines in Rebol?

前端 未结 9 980
星月不相逢
星月不相逢 2021-01-02 07:33

Given a string string, what is the fastest/most-efficient way to count lines therein? Will accept best answers for any flavour of Rebol. I\'ve been working unde

9条回答
  •  北海茫月
    2021-01-02 08:00

    Not the most efficient, but probably one of the fastest solution (anyway if a benchmark is run, I would like to see how this solution performs):

    >> s: "1^/2^/ ^/^/3"
    >> (length? s) - length? trim/with copy s newline
    == 4
    

提交回复
热议问题