I usually use *
when I want to get all the strings that contain the wanted characters.
*
used in regex, replaces all characters.
Used in SASS or CSS would be something like [id*="s"]
and it will get all DOM elements with id "s......".
/* add red color to all div with id s .... elements */
div[id^="s"] {
color: red;
}