|| - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


||

the Concatenation or || Operator

 

Calling Sequence

Parameters

Description

Thread Safety

Examples

Calling Sequence

a || b

Parameters

a

-

name or string

b

-

integer, name, string, or (expression)

Description

  

Note: The use of this operator is discouraged. Where possible the function cat should be used.

• 

The concatenation operator is a binary operator which requires a name or a string as its left operand, a. Its right operand, b, is evaluated and then concatenated (joined) to a.

• 

The type (string or name) of the result is the type of the left hand operand, a.

• 

If the right operand, b, evaluates to a natural integer, a string, or a name, the result of the concatenation is a name if the left operand, a, is a name and is a string if the left operand, a, is a string.

• 

The right operand, b, may be a sequence of names, strings, and integers. The result is a sequence of names (strings) consisting of the catenation of the left name (string) with each element in the right sequence.

• 

The right operand, b, may also be a range, in which case a sequence of names will be formed if the left operand, a, is a name. Likewise, if the left operand, a, is a string, then a sequence of strings will result.

• 

For the construct name || (range) where the operands in range are integers, the result is an expression sequence consisting of the names formed by concatenating name to each integer in the specified range. If the right operand, b, in range is less than the left operand, a, then the result is the null expression sequence.

• 

Ranges of characters (strings of length one) may also be used for the right operand, b. The result will be an expression sequence of strings or names, according to the type of the left operand, a.

• 

If the right operand, b, evaluates to some other type of object, (e.g., a floating-point number), the result of the operation is an unevaluated concatenated object.

• 

Any name returned from the concatenation operator will be a global variable.

Thread Safety

• 

The || operator is thread-safe as of Maple 15.

• 

For more information on thread safety, see index/threadsafe.

Examples

i5

i5

(1)

pi

p5

(2)

a2i

a10

(3)

If the right-hand expression is a sequence or a range and the operands of the range are integers or character strings, then Maple returns a sequence of names.

aa,b,4,67

aa,ab,a4,a67

(4)

a1..3

a1,a2,a3

(5)

foo1..3

foo1,foo2,foo3

(6)

basea..e

basea,baseb,basec,based,basee

(7)

astringaname

astringaname

(8)

whattype

string

(9)

anameastring

anameastring

(10)

whattype

symbol

(11)

anamea..e

anamea,anameb,anamec,anamed,anamee

(12)

astringa..e

astringa,astringb,astringc,astringd,astringe

(13)

Note the different evaluation rules applied to the left and right operands of || :

aleft:

bright:

ab

aright

(14)

See Also

cat

length

name

range

substring