const str = "Contact us at +1-800-123-4567 or +1-800-765-4321.";
const phoneRegex = /\+1-\d{3}-\d{3}-\d{4}/g;
console.log(str.match(phoneRegex));
// خروجی: ['+1-800-123-4567', '+1-800-765-4321']