home > 比較編 > Perl, PHP, Python, Ruby > arrays >

ForNext

Only Do What Only You Can Do

101. slice by endpoints, by length

VBScript

JScript

Perl

select 3rd and 4th elements:
@a[2..3]
splice(@a, 2, 2)

PHP

select 3rd and 4th elements:
none
array_slice($a, 2, 2)

Python

select 3rd and 4th elements:
a[2:4]
none

Ruby

select 3rd and 4th elements:
a[2..3]
a[2, 2]

PowerShell

Scala

F#

C

C++

C++Builder

VC++

C#

Java

Objective-C

D

VB

VB.NET

Delphi

Ada

PL/SQL

T-SQL

関数型

inserted by FC2 system