zeek/testing/btest/Baseline/language.string-indexing
Jon Siwek 8515d3aa57 Support omission of string slice low/high indices, BIT-1097.
Omission of the low index defaults to 0:

    s = "12345"; s[:3] == "123"

Omission of the high index defaults to length of the string:

    s = "12345"; s[3:] == "45"
2013-12-04 15:11:48 -06:00
..
out Support omission of string slice low/high indices, BIT-1097. 2013-12-04 15:11:48 -06:00