Better String Operations
Project description
Overview
Complex lines of code for manipulating strings are no more.
Table of Contents
Installation
Installation is pretty easy.
pip install stringops
Usage
Manipulation
Import the necessary extended class
from stringops.manipulation import Manipulation
Manipulate -> add
# suppose there is some string say 'value'
value = "Hey This is me"
# I want to add a '.' at the end
value = Manipulation(value)
value = value.add(".")
# I also want to add another sentence to it.
value = value.add("How are you", "!")
# print it
print(value)
Manipulate -> half
# lets take the above variable 'value'.
value = Manipulation("hey, this is me")
# I want to divide the string into half and i want to get the left side of the result.
left_half = value.half("left")
right_half = value.half("right")
print(left_half, right_half)
Manipulate -> split
# using the same varibale 'value'.
value = Manipulation("hey, this is me")
# suppose i want to split the string based on white spaces and
# get the value that is in the index place of 1
# can be done using
# >>> value.split(" ")[1]
index_one_value: str = value.split(" ", 1)
# all the values can also be retrieved
all_values: list[str] = value.split(" ", "all")
CONVERT THIS
MANIPULATION
OBJECT TOREAD
value: Manipulation = Manipulation("hey, this is me")
value: Read = value.convert_to_read()
Read
Importing
from stringops.read import Read
Read - check substring
value = Read("hey, this is me")
if value.there("he"):
return True
else:
return False
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
stringops-1.1.tar.gz
(4.5 kB
view details)
Built Distribution
File details
Details for the file stringops-1.1.tar.gz
.
File metadata
- Download URL: stringops-1.1.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9ca7f5e8325fb343f8d408896c0510a5c2aebc5384b51d1d74d01cdb0e5fd8d3 |
|
MD5 | 26b5962cd8f3dfd13f62d3ba69723963 |
|
BLAKE2b-256 | 31f077250f5a1aec542556ed07ea4fee96a2687f4d63a39b5655081c00a08d87 |
File details
Details for the file stringops-1.1-py3-none-any.whl
.
File metadata
- Download URL: stringops-1.1-py3-none-any.whl
- Upload date:
- Size: 5.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cb299fb7d1ac2ab3e8d07be8d579bc8068577a7ed7a7b94e192d3b482f98accd |
|
MD5 | 173de8691152fccddc7a2ce64a22a486 |
|
BLAKE2b-256 | 41c70ac20c3ba5da23ddcf97f07c740dc1dff4beb478aa15d0de90939e7f1b7b |