Add to The website how to find the presence of a YouTube channel on another one

Benjamin Loison 2023-02-24 15:29:26 +01:00
parent a9361e93ac
commit 0d456d6f32

@ -1,3 +1,9 @@
Note that YouTube censor bad words by replacing them with `[__]`, so you can retrieve them by using `[__]`.
As the website support regular expressions, you can exclude some channels by using `^((?!channelIdToExclude).)*$`
As the website support regular expressions, you can exclude some channels by using `^((?!channelIdToExclude).)*$`.
For instance find the presence of a YouTube channel on another one you can fill fields as follows:
```
channelIdToExclude
^((?!channelIdToExclude).)*$
```