Here’s a Pipedream component that extracts the desired string from the input: ```
export default defineComponent({ props: { input: { type: “string”, label: “Input Text”, }, }, async run({ steps, $ }) { const input = this.input; const regex = /([a-zA-Z0-9]{15,18})/; const match = input.match(regex); const extractedString = match ? match[0] : “No match found”; return extractedString; }, });