Java String Unquote unquote(String s)

Here you can find the source of unquote(String s)

Description

unquote

License

Open Source License

Declaration

public static String unquote(String s) 

Method Source Code

//package com.java2s;

public class Main {
    public static String unquote(String s) {
        return s.startsWith("\"") ? s.substring(1, s.length() - 1) : s;
    }/*w  ww.  ja v a2  s  .  c  om*/
}

Related

  1. unquote(String s)
  2. unquote(String s)
  3. unquote(String s)
  4. unquote(String s)
  5. unquote(String s)
  6. unquote(String s)
  7. unquote(String s)
  8. unquote(String s)
  9. unquote(String s, char c)