separators

A list of separators which can be added to the default ones.
Default separators are ['/', '-', ' ', '(', ')'].

The code below demonstrates the use of this option.

<input id="maskedtextbox" />

<script type="text/javascript">
jQuery(function($) {
     $("#maskedtextbox").shieldMaskedTextBox({
           mask: "^000^",
           value:"^123^",
           separators: ['^']
     });
});
</script>