Hi
I want to find all 2 consequent digits in a string,
i.e. having string '1234' i need to get array of ('12', '23', '34').
But as appeared regexp doesn't makes what i need:
@result = ('1234' =~ /\d\d/g);
print "@result"; #prints 12 34
Do you know any way to find all matches without manipulations with pos()?