Metadata-Version: 2.1
Name: easyregx
Version: 0.0.4
Summary: This python tool help to regex code easier
Home-page: https://github.com/pypa/easyregx
Author: Balakrishnan
Author-email: admin@reccebird.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE


# easyRegx

Simplify the regex methods and python methods for the basic problem.


## Installation

Install easyRegx with pip

```bash
    pip install easyregx
```
    
## Usage/Examples

`word_search`:
    Function to find given word in sentence or not
```python
import regex

regex.word_search(sentence, search_word)
```

`word_search_with_endspan`:
    Function to find given word in sentence or not

```
regex.word_search_with_endspan(sentence, search_word, endspan=None)
```

`remove_duplicates_letter`:
    Function to remove duplicates

```
regex.remove_duplicates_letter(str)
```

`separate_numbers_alphabets`:
    Function to separate the numbers and alphabets
    
```
regex.separate_numbers_alphabets(str)
```

`count_word_occurance`:
    Function to count occurance of the given word in the sentence

```
regex.count_word_occurance(sentence, word)
```







## Authors

- [@Balakrishnan](https://github.com/balakrishnan2)


## License

[MIT](https://choosealicense.com/licenses/mit/)

