The Trim function removes extra blank spaces on both the right and left side of a string.
<%sentence="start" & Trim(" How now brown cow? ") & "end" %>
startHow now brown cow?end
In this example, note that the extra white spaces are removed from both sides.