Trying to change
https://www.example.com/search/label/my%20search%20term
to
https://www.example.com/tag/my-search-term
Per the answer from @anubhava below, Option 2 works:
RewriteEngine On
RewriteRule ^search/label/(\S+)[-\s]+(\S+)$ /tag/$1-$2 [NE,NC,L,R=301]
RewriteRule ^search/label/(\S+)$ /tag/$1 [NE,NC,L,R=301]
RewriteRule ^(search/label/\S+)\s+(\S+\s.*)$ /$1-$2 [NC,L]
Thanks!