Skip to content

Instantly share code, notes, and snippets.

View Alsharie's full-sized avatar
🕕
I always slow to respond.

Alsharie

🕕
I always slow to respond.
  • Move Forward
  • yemen
View GitHub Profile
@Waseem-Almoliky
Waseem-Almoliky / Yemeni phone number regex.md
Last active May 4, 2025 17:19
yemeni phone numbers regex

السلام عليكم ورحمة الله وبركاته ، هذا كود ريجيكس للتحقق من صحة أرقام الجوالات اليمنية ، يقوم الريجيكس بالتحقق من مفتاح الدولة ، مفتاح شركات الإتصالات والخطوط الارضية لضمان صحة النص المدخل .

yemeni phone number regex

Hello

this is a regex code to validate yemeni phone number for private companies and ground lines almost everything :) hope you found it useful.

/^(((\+|00)9677|0?7)[01378]\d{7}|((\+|00)967|0)[1-7]\d{6})$/
@shreyasmalewar
shreyasmalewar / App.vue
Created February 17, 2021 08:08
Using Google Maps API for Location Picker with Vue 2
<template>
<div id="app">
<GmapMap
:center="center"
:zoom="18"
map-style-id="roadmap"
:options="mapOptions"
style="width: 100vmin; height: 50vmin"
ref="mapRef"
@click="handleMapClick"