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.
- C
- Clojure
- C++
- C#
- D
- Dart
- Elixir
- Erlang
- Go
- Go
- Groovy
- Haskell
- JS
- Java
- Java
- Java
- Java
- Java
- Java
- Kotlin
- Lisp
- Lua
- Obj-C
- PHP
- Pascal
- Perl
- Python
- Python
- Ruby
- Rust
- Rust
- Rust
- Scala
- Scheme
- Smalltalk
- VB
s.split(new RegExp('\\s+'))
chunks = String.split(s)
Chunks = string:tokens(S, [$\s]).
def chunks = s.split(/\s+/)
chunks = words s
let chunks = s.split(/ +/);
String chunks[] = s.split(" +");
List<String> chunks = of(s.split(" +"));
Immutable
List<String> chunks = asList(s.split(" +"));
Immutable
Scanner t = new Scanner(s);
t.useDelimiter(compile(" +"));
List<String> chunks = t.tokens().toList();
t.close();
Scanner t = new Scanner(s);
t.useDelimiter(compile(" +"));
String chunks[] = t.tokens()
.toArray(String[]::new);
t.close();
List<String> chunks
= new ArrayList<>(of(s.split(" +")));
Mutable
(defun words (s)
(if (equalp s "") nil
(let ((p (position #\Space s )))
(cond ((null p) (list s))
((zerop p ) (words (subseq s 1)))
(T (cons (subseq s 0 p) (words (subseq s (+ 1 p )))))))))
(setf chunks (words s))
$chunks = preg_split('/ +/', $s);
To match one ore more spaces, use preg_split instead of explode.
@chunks = split /\s+/, $s;
chunks = s.split()
If sep is not specified or is None, a different splitting algorithm is applied: runs of consecutive ASCII whitespace are regarded as a single separator, and the result will contain no empty strings at the start or end if the sequence has leading or trailing whitespace. Consequently, splitting an empty sequence or a sequence consisting solely of ASCII whitespace without a specified separator returns [].
chunks = s.split
val chunks = s.split(" ")
(define (tokenize l)
(let loop ((t '())
(l l))
(if (pair? l)
(let ((c (car l)))
(if (char=? c #\space)
(cons (reverse t) (loop '() (cdr l)))
(loop (cons (car l) t) (cdr l))))
(if (null? t)
'()
(list (reverse t))))))
(define (string-split s)
(map list->string (tokenize (string->list s))))
chunks := s substrings
Dim chunks = s.Split(" ")