"s_1" <> "s_2" <> ..., StringJoin["s_1", "s_2", ...], or StringJoin[{"s_1", "s_2", ...}] yields a string consisting of a concatenation of the s_i.
StringMatchQ["string", patt] tests whether " string" matches the string pattern patt. StringMatchQ["string", RegularExpression["regex"]] tests whether " string" matches the ...
TakeWhile[list, crit] gives elements e_i from the beginning of list, continuing so long as crit[e_i] is True.
TrigExpand[expr] expands out trigonometric functions in expr.
UniformGraphDistribution[n, m] represents a uniform graph distribution on n-vertex, m-edge graphs.
UniformSumDistribution[n] represents the distribution of a sum of n random variables uniformly distributed from 0 to 1.UniformSumDistribution[n, {min, max}] represents the ...
VectorQ
(Built-in Mathematica Symbol) VectorQ[expr] gives True if expr is a list or a one-dimensional SparseArray object, none of whose elements are themselves lists, and gives False otherwise. VectorQ[expr, ...
VertexReplace[g, {v_1 -> w_1, v_2 -> w_2, ...}] replaces each vertex v_i in the graph g by w_i.
WaitNext[{eid_1, eid_2, ...}] waits until the first evaluation represented by any of the eid_i finishes, then returns its result, the corresponding eid_i, and the list of ...
DSolve can find solutions for most of the standard linear second-order ODEs that occur in applied mathematics. Here is the solution for Airy's equation. Here is a plot that ...