zzz / frontend /src /utils /parse-terminal-output.ts
ar08's picture
Upload 1040 files
246d201 verified
raw
history blame contribute delete
744 Bytes
/**
* 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() || "";
};