Created
June 1, 2022 18:00
-
-
Save mirisuzanne/19ec36ad3ee106ba98ad8af31a3577a4 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@use 'sass:string'; | |
@use 'sass:list'; | |
@use 'sass:math'; | |
@use 'sass:meta'; | |
@function split($string, $separator, $limit: null) { | |
@if meta.type-of($string) != 'string' { | |
@error '$string is not a string'; | |
} | |
@if meta.type-of($separator) != 'string' { | |
@error '$separator is not a string'; | |
} | |
@if meta.type-of($limit) == 'number' { | |
@if $limit < 0 or $limit != math.round($limit) { | |
@error '$limit must be a positive intiger or null'; | |
} | |
} @else if $limit != null { | |
@error '$limit must be a positive intiger or null'; | |
} | |
@if $string == '' { | |
@return list.append((), $string); | |
} | |
$split-list: (); | |
@if $limit == 0 { | |
@return $split-list; | |
} | |
$length: string.length($string); | |
$limit: if($limit == null, $length, $limit); | |
$split-counter: 0; | |
@while $split-counter <= $limit and $length > 0 { | |
@if $split-counter == $limit { | |
$split-list: list.append($split-list, $string); | |
$string: ''; | |
} @else if $separator == '' { | |
$code-point: string.slice($string, 1, 1); | |
$split-list: list.append($split-list, $code-point); | |
$string: string.slice($string, 2); | |
$split-counter: $split-counter + 1; | |
} @else { | |
$index: string.index($string, $separator); | |
// current logic clearly makes sense if the index is > 1, | |
// but returns an empty first item if the index is 1. | |
// Is that the desired behavior? | |
@if $index { | |
$current-substring: string.slice($string, 1, $index - 1); | |
$split-list: list.append($split-list, $current-substring); | |
$string: string.slice($string, $index + string.length($separator)); | |
$split-counter: $split-counter + 1; | |
} @else { | |
// What happens if the index is null | |
// (seperator is not present in string)? | |
// return the string | |
$split-list: list.append($split-list, $string); | |
$string: ''; | |
} | |
} | |
// we need to update the length before we repeat the loop | |
$length: string.length($string); | |
} | |
@return $split-list; | |
} | |
$source: 'hello world'; | |
$test: split($source, ' ', 1); | |
.test { | |
source: 'hello world'; | |
type: meta.type-of($test); | |
result: meta.inspect($test); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.test { | |
source: "hello world"; | |
type: list; | |
result: "hello" "world"; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"sass": { | |
"compiler": "dart-sass/1.32.12", | |
"extensions": {}, | |
"syntax": "SCSS", | |
"outputStyle": "expanded" | |
}, | |
"autoprefixer": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment