Java Swing Text Format formatNumericString(String string, String mask)

Here you can find the source of formatNumericString(String string, String mask)

Description

format Numeric String

License

Open Source License

Declaration

public static String formatNumericString(String string, String mask) throws java.text.ParseException 

Method Source Code

//package com.java2s;
/*/*from w w w .j a v a 2  s .co  m*/
 IBPM - Ferramenta de produtividade Java
 Copyright (c) 1986-2009 Infox Tecnologia da Informa??o Ltda.
    
 Este programa ? software livre; voc? pode redistribu?-lo e/ou modific?-lo 
 sob os termos da GNU GENERAL PUBLIC LICENSE (GPL) conforme publicada pela 
 Free Software Foundation; vers?o 2 da Licen?a.
 Este programa ? distribu?do na expectativa de que seja ?til, por?m, SEM 
 NENHUMA GARANTIA; nem mesmo a garantia impl?cita de COMERCIABILIDADE OU 
 ADEQUA??O A UMA FINALIDADE ESPEC?FICA.
     
 Consulte a GNU GPL para mais detalhes.
 Voc? deve ter recebido uma c?pia da GNU GPL junto com este programa; se n?o, 
 veja em http://www.gnu.org/licenses/   
*/

public class Main {
    public static String formatNumericString(String string, String mask) throws java.text.ParseException {
        javax.swing.text.MaskFormatter mf = new javax.swing.text.MaskFormatter(mask);
        mf.setValueContainsLiteralCharacters(false);
        return mf.valueToString(string);
    }
}

Related

  1. formatAreaImperial(BigDecimal areaDec)
  2. formatAreaMetric(BigDecimal area)
  3. formatCEP(String str)
  4. formatCpfCnpj(String cpfCnpj)
  5. formatCpfCNPJ(String str)
  6. getBidiVisualPosition(final int start, final int end, final Element neighbouringElement, final int pos, final Position.Bias b0, final Position.Bias[] biasRet, final int length, final boolean toWest, final boolean isLTR)
  7. getElementByPosition(final Element rootElement, final int pos)
  8. getElementIndex(Element elem)
  9. getRegexFormatter(String regex)