Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for SplitAfterN (0.05 sec)

  1. src/bytes/bytes.go

    //
    // To split around the first instance of a separator, see [Cut].
    func SplitN(s, sep []byte, n int) [][]byte { return genSplit(s, sep, 0, n) }
    
    // SplitAfterN slices s into subslices after each instance of sep and
    // returns a slice of those subslices.
    // If sep is empty, SplitAfterN splits after each UTF-8 sequence.
    // The count determines the number of subslices to return:
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Sep 03 20:55:15 UTC 2024
    - 35.6K bytes
    - Viewed (0)
Back to top