Metadata-Version: 2.4
Name: regex-number-phone
Version: 0.1.0
Summary: Validate and format phone numbers using regex — Cambodia supported.
Author-email: Duch Dinarith <your_email@example.com>
License: MIT
Project-URL: Homepage, https://pypi.org/project/regex-number-phone/
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# regex-number-phone

Phone number regex validator and formatter.  
**Cambodia** validation supported.

## Install

## Usage

```python
from regex_number_phone import is_valid_cambodia, format_to_international

print(is_valid_cambodia("012345678"))           # True
print(format_to_international("012345678"))     # +85512345678
print(format_to_international("+85570888888"))  # +85570888888
