Metadata-Version: 2.1
Name: arc-lib-arodroz
Version: 0.0.3
Summary: Text tools
Home-page: https://github.com/arodroz/arc_lib
Author: Antonio Rodriguez
Author-email: arodroz@icloud.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/arodroz/arc_lib/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# strcpy
Python function allowing to copy a text in another one in a mutable way. That is regardless of whether the latter has enough space to accommodate the former.
## Usage
```python

    from arc_lib.text import strcpy

    text1 = "Hello"

    text2 = strcpy(text1, "world!", 6)
    
    print(text2)
```    
```console
    Hello world!
```    
```python
    text2 = strcpy(text1, "world!", 20)
    
    print(text2)
```    
```console
    Hello               world!
```    
```python
    text2 = strcpy(text1, "world!", 2)
    
    print(text2)
```    
```console
    Heworld!
```
## Installation
Install this through pip:
```shell
pip install arc_lib
```


