mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
10 lines
321 B
C#
10 lines
321 B
C#
using System.Text.RegularExpressions;
|
|
|
|
namespace NadekoBot.Modules.Music;
|
|
|
|
public sealed class YoutubeHelpers
|
|
{
|
|
public static Regex YtVideoIdRegex { get; } =
|
|
new(@"(?:youtube\.com\/\S*(?:(?:\/e(?:mbed))?\/|watch\?(?:\S*?&?v\=))|youtu\.be\/)(?<id>[a-zA-Z0-9_-]{6,11})",
|
|
RegexOptions.Compiled);
|
|
} |