Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
- Ada
- C
- Clojure
- C++
- C++
- C#
- D
- Dart
- Elixir
- Erlang
- Fortran
- Go
- Groovy
- Haskell
- Haskell
- JS
- Java
- Java
- Java
- Kotlin
- Lisp
- Lisp
- Lisp
- Lua
- Obj-C
- PHP
- Pascal
- Perl
- Python
- Python
- Python
- Ruby
- Rust
- Scala
- Scheme
- Smalltalk
- Smalltalk
- VB
(clojure.string/join "," '("abc" "def" "ghi") )
std::vector<std::string> x;
std::string y;
const char* const delim = ", ";
switch (x.size())
{
case 0: y = ""; break;
case 1: y = x[0]; break;
default:
std::ostringstream os;
std::copy(x.begin(), x.end() - 1,
std::ostream_iterator<std::string>(os, delim));
os << *x.rbegin();
y = os.str();
}
string y = string.Join(", ", x);
x must be of type IEnumerable<string>
Y = string:join(X, ",").
write (unit=y,fmt='(*(A,:,", "))') x
This uses Fortran's internal write to write to the string y.
The star * in the format descriptor (an extension, not in the Fortran standard) makes sure that the format in the brackets following is repeated as often as possible, and the : means skip anything afterwards (here, the comma) if there are no more I/O items.
The star * in the format descriptor (an extension, not in the Fortran standard) makes sure that the format in the brackets following is repeated as often as possible, and the : means skip anything afterwards (here, the comma) if there are no more I/O items.
String y = x.join(', ')
{-# LANGUAGE OverloadedStrings #-}
y :: T.Text
y = T.intercalate ", " x
The first line allows the string literal ", " to be a type other then type String. In this case it is automatically converted to type Text.
This version uses Text as a common replacement for the built-in String type.
The type annotation on the second line is optional and can be omitted.
This version uses Text as a common replacement for the built-in String type.
The type annotation on the second line is optional and can be omitted.
y = x.join(", ");
String y = x.get(0);
int i = 1, n = x.size();
while (i < n)
y = y + ", " + x.get(i++);
String y = String.join(", ", x);
This exists since Java 8.
String y = x.stream()
.reduce((a, b) -> a + ", " + b)
.get();
val y = listOf(x).joinToString(", ")
(defvar y (format nil "~{~A~^, ~}" x))
(setf y (reduce (lambda (a b)
(concatenate 'string a ", " b))
x))
$y = implode(', ', $x);
var
_x: Array of string;
_y: String;
i: Integer;
begin
_y := ''; //initialize result to an empy string
// assume _x is initialized to contain some values
for i := Low(_x) to High(_x) do
begin
_y := _y + _x[i];
if i < High(_x) then _y := _y + ';';
end;
end;
$y = join(", ", @x)
y = ', '.join(map(str, x))
This works even if some elements in x are not strings.
y = ', '.join(x)
This works if x contains only strings.
y = x.join(", ")
let y = x.join(", ");
Note that join() used to be named connect() .
val y = x.mkString(",")
(define y
(foldr (lambda (a b)
(if (string=? b "")
a
(string-append a ", " b)))
""
x))
y := x joinSeparatedBy: ', '.
', ' join: #('abc' 'def' 'ghi')
Dim x = {"a", "b", "c", "d"}.ToList
Dim y = String.Join(",", x)