For column of string like this "This is comment 1""comment 2"3302, 0 or more comments between double quotes concatenated with an id of any length or characters of some item at the end. How to extract only the id so that the end result becomes 3302 on Microsoft SQL Server 2016?
Example Input:
Item                                                     Qty
2d3eu                                                    30
"This item is discontinued"103d2h                        20
"Just some random comment"1er3fhvd                       10
"There can be any number of comment""Like this"144       20
Desired output:
Item      Qty
2d3eu     30
103d2h    20
1er3fhvd  10
144       20
 
     
     
    