Пробный негативный взгляд в будущее, но, похоже, это не помогает
/^(?!www).(https:\/\/[^\s$\<]+)/g)
const regex = /(?!www).(https:\/\/[^\s$\<]+)/g;
[
'https://google.fr',
'https://www.google.fr',
'www.google.fr',
'google.fr',
].forEach((x) => {
console.log(regex.test(x));
});