File size: 744 Bytes
246d201 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
/**
* Parses the raw output from the terminal into the command and symbol
* @param raw The raw output to be displayed in the terminal
* @returns The parsed output
*
* @example
* const raw =
* "web_scraper.py\r\n\r\n[Python Interpreter: /openhands/poetry/openhands-5O4_aCHf-py3.12/bin/python]\nopenhands@659478cb008c:/workspace $ ";
*
* const parsed = parseTerminalOutput(raw);
*
* console.log(parsed.output); // web_scraper.py
* console.log(parsed.symbol); // openhands@659478cb008c:/workspace $
*/
export const parseTerminalOutput = (raw: string) => {
const envRegex = /(.*)\[Python Interpreter: (.*)\]/s;
const match = raw.match(envRegex);
if (!match) return raw;
return match[1]?.trim() || "";
};
|