v1.9.1
Divides a string into an array using the argument as a separator. split is commonly used to convert comma-separated items from a string to an array.
Input
1 | {% assign beatles = "John, Paul, George, Ringo" | split: ", " %} |
Output
1 |
|
v1.9.1
Divides a string into an array using the argument as a separator. split is commonly used to convert comma-separated items from a string to an array.
Input
1 | {% assign beatles = "John, Paul, George, Ringo" | split: ", " %} |
Output
1 |
|