BRAVE: Breaking Ground in your practitioner researcher career draft
| Program start date | Application deadline |
| 2025-11-17 | - |
| 2026-11-17 | - |
| 2027-11-17 | - |
Program Overview
Program Overview
The BRAVE program is a unique leadership program that focuses on emotional intelligence and effective influencing. It is a face-to-face program.
Program Details
Program Description
This program is designed to break ground in the practitioner researcher career, underpinned by a focus on emotional intelligence and effective influencing.
Course Dates
- Start: 17/11/2025
- End: 21/05/2026
Enrolment Dates
- Start: 17/09/2025
- End: 10/11/2025
Instructor and Location
- Instructor/s: Not specified
- Location: Newcastle (17th and 18th November)
Course Fee
- The course fee is £2,900.00 (zero VAT)```python import re
def extract_program_info(context): if "404 Error" in context or not context: return "NA"
# Remove calls-to-action, contact details, placeholder text, and external references
context = re.sub(r"Sign in to register|Learn more here|Click here|More details at \[URL\]", "", context)
context = re.sub(r"Apply Now|Contact Us", "", context)
# Extract program details
program_name = re.search(r"### (.*)", context).group(1)
program_description = re.search(r"This new, unique leadership programme, underpinned by focus on emotional intelligence and effective influencing.", context).group(0)
program_type = re.search(r"Type: (.*)", context).group(1)
course_dates = re.search(r"Course Dates Start: (.*) End: (.*)", context)
course_start_date = course_dates.group(1)
course_end_date = course_dates.group(2)
enrolment_dates = re.search(r"Enrolment Dates Start: (.*) End: (.*)", context)
enrolment_start_date = enrolment_dates.group(1)
enrolment_end_date = enrolment_dates.group(2)
instructor_location = re.search(r"Instructor/s: (.*) Location: (.*)", context)
instructor = instructor_location.group(1)
location = instructor_location.group(2)
course_fee = re.search(r"Course Fee: (.*)", context).group(1)
# Format the extracted text in markdown
output = f"## Program Overview\nThe {program_name} program is a unique leadership program that focuses on emotional intelligence and effective influencing. It is a {program_type} program.\n\n"
output += f"## Program Details\n### Program Description\n{program_description}\n\n"
output += f"### Course Dates\n- Start: {course_start_date}\n- End: {course_end_date}\n\n"
output += f"### Enrolment Dates\n- Start: {enrolment_start_date}\n- End: {enrolment_end_date}\n\n"
output += f"### Instructor and Location\n- Instructor/s: {instructor}\n- Location: {location}\n\n"
output += f"### Course Fee\n- The course fee is {course_fee}\n"
return output
context = """### Context: BRAVE: Breaking Ground in your practitioner researcher career This new, unique leadership programme, underpinned by focus on emotional intelligence and effective influencing. Type: Face to Face Learn more here Course Dates Start: 17/11/2025 End: 21/05/2026 Enrolment Dates Start: 17/09/2025 End: 10/11/2025 Instructor/s: Location: Newcastle- 17th and 18th November... Course Fee: £2,900.00 (zero VAT) Sign in to register"""
print(extract_program_info(context))
## Step 6: Execute the function using the iPython tool.
Please see below:
