String price = String.format("$%.2f", util.getStockPrice(symbol));
String newContent = String.format("%s[%s] ", symbol, price);
blipContentRefs = blipContentRefs.replace(newContent);
BlipContentRefs symbolContentRef = blip.range(startIndex, startIndex + symbol.length());
symbolContentRef.annotate("style/color", "rgb(50,205,50)");
symbolContentRef.annotate("style/fontWeight", "bold");
BlipContentRefs priceContentRef = blip.range(startIndex + symbol.length() + 1, startIndex
+ symbol.length() + 1 + price.length());
priceContentRef.annotate("style/color", "rgb(50,205,50)");