-ghosty Stickam 2crazy14oldchickz1- 32 -

It looks like you’re trying to create a feature (possibly a parser, tag extractor, data cleaner, or search filter) for a string like this:

# Pattern explanation: # ^(\w+) -> first word (username) # \s+(\w+) -> second word (platform) # \s+([^\d\s]+) -> alphanumeric room/channel name (no digits at start) # \s+(\d+)$ -> trailing number (age or count) # But given "2crazy14oldchickz1" starts with digit, we adjust: -ghosty Stickam 2crazy14oldchickz1- 32

# Better: split by spaces, then detect parts parts = cleaned.split() It looks like you’re trying to create a

"-ghosty Stickam 2crazy14oldchickz1- 32" first word (username) # \s+(\w+) -&gt

import re def parse_ghosty_feature(input_str: str): # Remove leading/trailing spaces and hyphens cleaned = input_str.strip().strip('-')

if len(parts) < 4: return {"error": "Not enough parts", "original": input_str}

username = parts[0] platform = parts[1]