TransEdit is a text transformation tool that lets you process text through Python functions. Write a transform script, load some input text, and click Process to see the results.
def transform(text):
# Create a pipeline that:
# 1. Finds lines containing "error"
# 2. Excludes lines containing "debug"
# 3. Strips whitespace
p = P(text).grep("error").grep_v("debug").map(strip)
return p.run()
The P class provides methods like:
grep(pattern)
- Keep lines containing patterngrep_v(pattern)
- Exclude lines containing patternreplace(old, new)
- Replace textre_search(pattern)
- Keep lines matching regexre_sub(pattern, repl)
- Regex substitutionmap(fn)
- Apply function to each linedef transform(text):
# Parse HTML and extract all links
from bs4 import BeautifulSoup
soup = BeautifulSoup(text, 'html.parser')
# Find all links and format them
links = []
for a in soup.find_all('a'):
href = a.get('href', '')
text = a.text.strip()
links.append(f"{text}: {href}")
return "\n".join(links)