Java XML Node Replace replaceComma(Node node)

Here you can find the source of replaceComma(Node node)

Description

replace Comma

License

Open Source License

Parameter

Parameter Description
node a parameter

Return

the new string

Declaration

public static String replaceComma(Node node) 

Method Source Code

//package com.java2s;
/*----------------    FILE HEADER  ------------------------------------------
    //from   w w  w. j a  va  2 s .  c o m
 This file is part of deegree.
 Copyright (C) 2001 by:
 EXSE, Department of Geography, University of Bonn
 http://www.giub.uni-bonn.de/exse/
 lat/lon Fitzke/Fretter/Poth GbR
 http://www.lat-lon.de
    
 This library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Lesser General Public
 License as published by the Free Software Foundation; either
 version 2.1 of the License, or (at your option) any later version.
    
 This library is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 Lesser General Public License for more details.
    
 You should have received a copy of the GNU Lesser General Public
 License along with this library; if not, write to the Free Software
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
    
 Contact:
    
 Andreas Poth
 lat/lon Fitzke/Fretter/Poth GbR
 Meckenheimer Allee 176
 53115 Bonn
 Germany
 E-Mail: poth@lat-lon.de
    
 Jens Fitzke
 Department of Geography
 University of Bonn
 Meckenheimer Allee 166
 53115 Bonn
 Germany
 E-Mail: jens.fitzke@uni-bonn.de
    
     
 ---------------------------------------------------------------------------*/

import org.w3c.dom.Node;

public class Main {
    /**
     * @param node
     * @return the new string
     */
    public static String replaceComma(Node node) {
        if (node.getFirstChild().getTextContent() == null) {
            return "";
        }

        String[] ss = node.getFirstChild().getTextContent().split(",");

        if (ss.length == 1) {
            return ss[0] + " " + ss[0];
        }

        return ss[0] + " " + ss[1];
    }
}

Related

  1. replaceNode(Node masterNode, Node oldNode, Node newNode)
  2. replaceNode(Node oldNode, Node newNode, Node source)
  3. replaceText(Node node, String text)
  4. replaceVariable(final Node node, final String sVar, final String sValue)