I'm trying to make a file path from a group of textbox inputs and then display that filepath. But the ng-show method I'm using is adding spaces into the string. Is there anyway to prevent this or maybe another method to use to get this functionality?
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"></script>
</head>
<body>
<div ng-app="">
<div>
Client:
</div>
<div>
<input type="text"
name="client"
ng-model="client">
</div>
<div>
Brand:
</div>
<div>
<input type="text"
name="brand"
ng-model="brand">
</div>
<strong>
<label ng-bind="client"></label>
<label ng-show="client.length">\</label>
<label ng-bind="brand"></label>
<label ng-show="brand.length">\</label>
</strong>
</div>
</body>
</html>