darktowerk56c,
const string = 'Чтобы оформить, обратитесь в нашу компанию по телефону 8 800 100-31-33';
const reg = /(.*?)(([0-9][-\s]?){11})/;
const match = string.match(reg);
let description, phoneNumber;
if(match) [_, description, phoneNumber] = match;
console.log(phoneNumber)