User Tools

Site Tools


el:mid

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

el:mid [2016/01/01 22:39]
el:mid [2020/02/28 10:46] (current)
Line 1: Line 1:
 +===== Mid =====
 +==== Format ====
 +**mid**( //string//, //start character//, //length//)
 +
 +==== Description ====
 +Returns a portion of the specified //string//, starting from the //start character//, and continuing for //length// characters.
 +==== See Also ====
 +[[left|Left]], [[right|Right]]
 +==== Example ====
 +<code>
 +print mid("Hello", 2, 3)
 +</code>
 +will display
 +<code>
 +ell
 +</code>