Remove spaces

This is what I tried last

<li role="presentation" ><a href="#<?php $RouteName = the_sub_field('route_name'); $URIname = str_replace( [" ", "%20"],"", $RouteName ); echo $URIname; ?>" aria-controls="profile" role="tab" data-toggle="tab"><?php the_sub_field('route_name'); ?></a></li>

I believe that there is an error in this code, but I don’t know where. Dreamweaver is coloring the line of code red, but I can’t seem to find the error.

This is what is being output when I run the code

<a href="#Route 4" aria-controls="profile" role="tab" data-toggle="tab">Route 4</a>

This of course is what I want

<a href="#Route4" aria-controls="profile" role="tab" data-toggle="tab">Route 4</a>