Logo

Programming-Idioms

History of Idiom 38 > diff from v35 to v36

Edit summary for version 36 by :
New Csharp implementation by user [javasucks]

Version 35

2016-02-16, 18:37:04

Version 36

2016-02-17, 11:19:13

Idiom #38 Extract a substring

Find substring t consisting in characters i (included) to j (excluded) of string s.
(character indexes start at 0 unless specified otherwise)

Idiom #38 Extract a substring

Find substring t consisting in characters i (included) to j (excluded) of string s.
(character indexes start at 0 unless specified otherwise)

Code
var t = s.Substring(i, j);