Simple tools for downloading, cleaning, extracting and parsing content
Project description
Strutil
Simple helper functions for using strings and regular expressions (mostly) interchangeably.
Requirements
Python 3.4+
Module Contents
strutil.is_string(obj)
Check if obj is a string
strutil.is_regex(obj)
Check if obj is a regular expression
- strutil.replace(text, old, new, count=None, strip=False)
Replace an old subset of text with new.
old type may be either a string or regular expression.
If strip, remove all leading/trailing whitespace.
If count, replace the specified number of occurence, otherwise replace all.
strutil.remove(text, what, count=None, strip=False)
Like replace, where new replacement is an empty string.
strutil.replace_each(text, items, count=None, strip=False)
Like replace, where each occurrence in items is a 2-tuple of (old, new) pair.
strutil.remove_each(text, items, count=None, strip=False)
Like remove, where each occurrence in items is what to remove.
strutil.contains(text, what)
Check if what occurs in text
strutil.find_first(data, what)
Search for what in the iterable data and return the index of the first match. Return None if no match found.
strutil.splitter(text, token=None, expected=2, default='', strip=False)
Split text by token into at least expected number of results.
When token is None, the default for Python str.split is used, which will split on all whitespace.
token may also be a regex.
If actual number of results is less than expected, pad with default.
If strip, than do just that to each result.
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
Built Distribution
File details
Details for the file strutil-0.2.1.tar.gz
.
File metadata
- Download URL: strutil-0.2.1.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 60c162169bf6d5eba97ceea2a08442659ce9e9795129f136afd704e96e063bb0 |
|
MD5 | bb01abbb00b7119d266efdefe110e9ee |
|
BLAKE2b-256 | 3798b3d93ac2352be16e61cf9ee00961f41cef3bfd5194e7c591be8414f3826a |
File details
Details for the file strutil-0.2.1-py3-none-any.whl
.
File metadata
- Download URL: strutil-0.2.1-py3-none-any.whl
- Upload date:
- Size: 4.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c73102a4bd745c736068a88858e017d70c1598de5facd3963337566285b1756f |
|
MD5 | 216501f3a3a01fb31692f992f7c95fdf |
|
BLAKE2b-256 | 33663e4b51c7a123809ac4fcd2afb677b19e5798502b6a85c36383d6454223a6 |