{% extends 'base.html' %} {% from '_helpers.jinja' import render_field, render_checkbox_field, render_button %} {% block content %}
{{ last_error_text }}
This tool will extract text data from all of the watch history.
For example, to extract only the numbers from text ‐ Raw text: Temperature 5.5°C in Sydney RegEx to extract: Temperature ([0-9\.]+)
Temperature 5.5°C in Sydney
Temperature ([0-9\.]+)
Be sure to test your RegEx here.
Each RegEx group bracket () will be in its own column, the first column value is always the date.
()