Skip to content

Instantly share code, notes, and snippets.

@gravelld
Created March 29, 2016 11:30
Show Gist options
  • Save gravelld/f48c1112a07ee47ed435 to your computer and use it in GitHub Desktop.
Save gravelld/f48c1112a07ee47ed435 to your computer and use it in GitHub Desktop.
# Rule to limit genre fields to 22 characters, as per https://sonos.custhelp.com/app/answers/detail/a_id/1552/kw/tag%20character%20limit
# Offers a one-click fix to truncate the genre to exactly 22 characters.
rule sonosGenreCharLimit with label "Sonos genre character limit" has alternatives
22_CHARS {
find /^(.{0,22}+).+$/ replace with "$1"
}
applies to genre
@gravelld
Copy link
Author

A regular expression rule to identify and fix genre fields longer than the Sonos character length limit - http://www.blisshq.com/music-library-management-blog/2016/03/29/sonos-character-limits/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment