validates_format_of :tags, :with => /^(([^,]+),){0,3}([^,]+)$/
有了这个验证可能这个正则表达式:
key1, key2, key3, key4
但是我想将每个关键字的字节数限制为最大30
,所以这个关键字在正则表达式中是可能的:
keyword with More than 30 bytes
这是规格链接:
https://developers.google.com/youtube/2.0/reference#youtube_data_api_tag_media:keywords
如何将此过滤器添加到上述正则表达式中?