Created
June 7, 2016 07:22
-
-
Save PuddingNL/51866d4b9f1151963fbd973bf1d66116 to your computer and use it in GitHub Desktop.
String replace in sass
This file contains hidden or 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
| /** | |
| * Replace `$search` with `$replace` in `$string` | |
| * @author Hugo Giraudel | |
| * @param {String} $string - Initial string | |
| * @param {String} $search - Substring to replace | |
| * @param {String} $replace ('') - New value | |
| * @return {String} - Updated string | |
| */ | |
| @function str-replace($string, $search, $replace: '') { | |
| $index: str-index($string, $search); | |
| @if $index { | |
| @return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace); | |
| } | |
| @return $string; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment