Basic example with negative and positive numbers
Input
Order #123 - item -45 and +7? (note: + sign not considered)
Output
[-123? No, see below]
This example clarifies that only patterns like '-45' and '123' are considered; explicit '+' is not handled as part of an integer for this task. (In practice, for the input 'a-12b34' you should return [-12, 34].)