sevnpy.io.regexutility

Regex utility, (sevny.io.regexutility)

This module contains methods and utilities to use regex

Module Attributes

capturing(value)

Return the string (value) where value is the input

notcapturing(value)

Return the string (?:value) where value is the input

Functions

capturing

Return the string (value) where value is the input

notcapturing

Return the string (?:value) where value is the input

regex_dataframe_from_string

Apply a regex match to a string and store the captured values to a pandas DataFrame

regex_from_file

Apply a regex match to the content of a file and store the captured values to a pandas DataFrame

Classes

ReTypeMatch

This class is a pure static class used to retrieve the regex matching pattern for various types.