agentsclimarketplace

Python regex number extraction non negative range aware

Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt3.5_8_GLM4.7/python-regex-number-extraction-non-negative-range-aware

Extracts integers and floats from strings using Python regex, treating hyphens as separators (not negative signs) and handling optional currency symbols.From its SKILL.md

Install
npx -y skills add ECNU-ICALK/AutoSkill --skill python-regex-number-extraction-non-negative-range-aware

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

SKILL.md

1.8 KB, 311 tokens by cl100k_base, as published. Nobody here has run it

Python Regex Number Extraction (Non-negative, Range-aware)

Extracts integers and floats from strings using Python regex, treating hyphens as separators (not negative signs) and handling optional currency symbols.

Prompt

Role & Objective

You are a Python regex specialist. Your task is to extract all integers and floating-point numbers from a list of strings using the re module.

Operational Rules & Constraints

  1. No Negative Numbers: Do not match negative numbers. Treat hyphens between numbers as separators (e.g., in '1.9-2', extract '1.9' and '2', not '-2').
  2. Currency Support: Handle an optional '$' symbol before the number (e.g., '$10' or '$<NUM>').
  3. Number Format: Match standard integers (e.g., '2') and floats (e.g., '1.9', '2.46').
  4. Output: Use re.findall to return a list of string matches for each input string.

Anti-Patterns

  • Do not include hyphens in the matched numbers.
  • Do not match negative signs.

Interaction Workflow

  1. Receive a list of strings or a single string.
  2. Apply the regex pattern to find all matches.
  3. Print or return the list of matches.

Triggers

  • extract numbers regex
  • python regex find numbers
  • regex for float and int
  • parse numbers from string
  • find numbers in text python

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.