Ok I have an autocomplete/string matching problem to solve. I have an expression string typed in by a user into a text box, e.g.

More detail:
Expression textbox has string
"Buy some Al"
and client has a list of suggestions given by a server after a fuzzy match which populate a listbox
All Bran, Almonds, Alphabetti Spaghetti
now on the GUI I have a nice intellisense style autocomplete, but I need to wire up the "TAB" action to perform the complete. So if the user presses TAB and "All Bran" was the top suggestion, the string becomes
"Buy some All Bran"
e.g. the string "Al" was substituted for the top match "All Bran"
It's more than a simple string split on the expression to match the suggestions, as the expression text could be this
"Buy some All Bran and Al"
with suggestions
Alphabetti Spaghetti
In which case I'd expect the final Al to be substituted with the top match so the result becomes
"Buy some All Bran and Alphabetti Spaghetti"
I'm wondering how to do this simply in C# (Just the C# string manipulation, not GUI code) without going back to the server and asking for a substitution to be made.