如何按博客标题排序并排除WordPress中的数字?

I am displaying a list of properties using blog posts in WordPress.

I am trying to sort the properties (e.g. 100 Main Road, 201 John Street, 300 Ann Street) but I need to sort them only alphabetically and disregard the street number? I am able to sort by title, but again, it's ordering by number first:

                        'orderby' => 'title',
                        'order' => 'ASC',

So the order I would need it to be in is: 300 Ann Street, 201 John Street, 100 Main Road.