I am using the following packages:
\documentclass[journal]{IEEEtran}
% *** MISC UTILITY PACKAGES ***
\usepackage{graphicx}
\usepackage[caption=false]{subfig}
\usepackage[sort,compress]{cite}
%\usepackage{caption}
% *** MATH PACKAGES ***
\usepackage[cmex10]{amsmath}
\usepackage{amssymb}
\usepackage[mediumspace,mediumqspace,Gray,squaren]{SIunits}
\usepackage[citebordercolor={0 1 0}]{hyperref}
\begin{document}
% paper title
% can use linebreaks \\ within to get better formatting as desired
\title{Fabrication}
% The paper headers
\markboth{JOURNAL OF MICROELECTROMECHANICAL SYSTEMS}%
{ \MakeLowercase{\textit{et al.}}: Fabrication, Characterization and Modeling of Fully-Integrated Piston-Type Electrodynamic Microactuators}
% make the title area
\maketitle
\begin{abstract}
%\boldmath
This paper presents
\end{abstract}
\IEEEpeerreviewmaketitle
\section{Introduction}
\IEEEPARstart{E}{lectrodynamic}
harvesters\cite{f11:Kulkarni2008,f11:Sari2008,f11:Wang2009,f11:Zhu2010,f11:Peng2011}.
These devices rely.
\bibliographystyle{IEEEtran}
\bibliography{f11}
\end{document}
After I compile my document I get the following as a part of my resulting .pdf document:

I want to get rid of the square brackets adjacent to the hyphens, e.g. I want "[9-13]" and not "[9]-[13]", which is the how it is right now.
Any suggestions?
citepackage explicitly with thesortandcompressoptions (as well as thenobreakoption, if needed):\usepacakge[sort,compress,nobreak]{cite}. Second, be sure to load thehyperrefpackage last. If the problems persist, please augment your code snippets to a full MWE (minimum working example) that duplicates the problem behavior you're encountering. Without such an MWE, it's very difficult (if not impossible) to correctly diagnose and fix the problems. – Mico Jul 07 '12 at 02:01[x]-[y]style, not[x-y], and so the class is deliberately set up to give this output. From your example, I'd assume you are submitting to a journal, in which case altering this here seems like a bad idea. – Joseph Wright Jul 07 '12 at 06:06