Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simplify F4Parser #259

Open
jackmoody11 opened this issue Jan 3, 2022 · 0 comments
Open

Simplify F4Parser #259

jackmoody11 opened this issue Jan 3, 2022 · 0 comments

Comments

@jackmoody11
Copy link
Member

Patterns used in F4Parser can be improved by creating patterns via a function.

def f4_pattern(name: str):
    """Function to create regex pattern.

    Args:
        name (str): Name inside of angle brackets.

    Examples:
        
        >>> f4_pattern("nonDerivativeTransaction")
        '<nonDerivativeTransaction>(.*?)</nonDerivativeTransaction>'
    """
    return rf"<{name}>(.*?)</{name}>"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant