Skip to content

Instantly share code, notes, and snippets.

@gravelld
Created March 29, 2016 11:28
Show Gist options
  • Save gravelld/a31017680d8df7df5690 to your computer and use it in GitHub Desktop.
Save gravelld/a31017680d8df7df5690 to your computer and use it in GitHub Desktop.
# Rule to limit album fields to 92 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 album name to exactly 92 characters.
rule sonosAlbumCharLimit with label "Sonos album name character limit" has alternatives
92_CHARS {
find /^(.{0,92}+).+$/ replace with "$1"
}
applies to album_name
@gravelld
Copy link
Author

A regular expression rule to identify and fix album names 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