Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 217 Bytes

File metadata and controls

21 lines (14 loc) · 217 Bytes

Alternatives

Alternatives(p1, p2, ..., p_i)

or

p1 | p2 | ... | p_i

is a pattern that matches any of the patterns p1, p2,...., p_i.

Examples

>> a+b+c+d/.(a|b)->t
c + d + 2 t