Login
|
Signup
langref.org
-
java
and
erlang
add..
all
clojure
cpp
csharp
fantom
fsharp
go
groovy
haskell
ocaml
perl
php
python
ruby
scala
Home
All
Solved
Unsolved
Strings
Numbers
Regex
Lists
Maps
Structure
Files
Dates
OOP
Networking
XML
Algorithms
Misc
Parallel
View Problem
Strings
Declaration
Define a string containing special characters
Define the literal string
"\#{'}${"}/"
java
String special = "\\#{'}${\"}/";
public class Solution60 {
public static void main(String[] args) {
String special = "\\#{'}${\"}/";
}
}
erlang
Special = "\\#{'}\${\"}/",
-module(special).
-export([start/0]).
start() ->
Special = "\\#{'}\${\"}/",
io:format("~s~n", [Special]).
Submit a new solution for
java
or
erlang
There are 21 other solutions in
additional
languages (
clojure
,
cpp
,
csharp
,
fantom
...)