Heart and angioplasty

Specialist doctors of Shams Clinic are ready to provide services to respected clients for cardiovascular services.

emergency

The emergency department of Shams Hospital is ready to serve all patients as soon as possible.

Radiotherapy and oncology

Specialist doctors in the neuropsychiatric department of Shams Hospital are ready to treat patients at the earliest opportunity.

With the newest and most up-to-date equipment in the region, Shams Clinic can meet the needs of many patients. This clinic provides the best services to patients with more than 10 specialized departments.
function persianToEnglishNumber(str) { const persianNumbers = ['۰', '۱', '۲', '۳', '۴', '۵', '۶', '۷', '۸', '۹']; const englishNumbers = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']; return str.replace(/[۰-۹]/g, function (w) { return englishNumbers[persianNumbers.indexOf(w)]; }); } // استفاده: const englishNumber = persianToEnglishNumber('۱۲۳۴۵'); console.log(englishNumber); // خروجی: 12345