MOSS doesn't offer this out the box and of course many people would like to have it. Here's a quick and dirty javascript change which will offer this functionality. You'll have to forgive any inelegance in my coding, I'm a bit rusty ;) You need to edit the search.js file and add the following: A trim function function trim(s) { var l=0; var r=s.length -1; while(l < s.length && s.substr(l,1) == ' ') { l++; } while(r > l && s.substr(r,1) == ' ') { r-=1; } return s.substring(l,...
Thanks to Solidsoft for running a great day at Microsoft last week. Topics covered were BizTalk, SharePoint and using them to build successful SOA and BPM solutions. Being responsible for BizTalk and also having had SharePoint land on my plate recently, the day gave me some good ideas about where to take these platforms...