Java String Unquote UnQuote(String value)

Here you can find the source of UnQuote(String value)

Description

Un Quote

License

Open Source License

Declaration

public static String UnQuote(String value) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static final String QUOTE = "\"";
    public static final String EMPTY = "";

    public static String UnQuote(String value) {
        return value.replaceAll(QUOTE, EMPTY);
    }/*  ww  w  .  ja va  2 s  . c o m*/
}

Related

  1. unquote(String val)
  2. unquote(String val)
  3. unquote(String value)
  4. unquote(String value)
  5. unquote(String value)
  6. unquote(String value)
  7. unquote(String value)
  8. unquote(String value)
  9. unquoteAtom(String atom)