Not using a regex
I highly suggest you don't parse addresses with a regex. If you're looking for a better practice, there is a method of parsing addresses demonstrated and explained in this answer
SELECT * FROM standardize_address(
'us_lex','us_gaz','us_rules',
'68 TIDAL BREEZE DR, Citytown Texas, 77346'
);
building | house_num | predir | qual | pretype | name | suftype | sufdir | ruralroute | extra | city | state | country | postcode | box | unit
----------+-----------+--------+------+---------+--------------+---------+--------+------------+-------+----------+-------+---------+----------+-----+------
| 68 | | | | TIDAL BREEZE | DRIVE | | | | CITYTOWN | TEXAS | USA | 77346 | |
(1 row)
Or to get just certain values
SELECT house_num || ' Other Stuff ' || suftype AS whatever
FROM standardize_address('us_lex', 'us_gaz', 'us_rules',
'68 TIDAL BREEZE DR, Citytown Texas, 77346'
);
whatever
----------------------
68 Other Stuff DRIVE
(1 row)