I have heard and read about flip-flops with regular expressions in Perl and Ruby recently, but I was unable to find how they really work and what the common use cases are.
Can anyone explain this in a language-agnostic manner?
Now that I understand what it is, and how it works, I would rephrase the question to be simply: What is a flip-flop operator?
The flip-flop operator in Perl evaluates to true when the left operand is true, and keeps evaluating to true until the right operand is true. The left and right operand could be any kind of expression, but most often it is used with regexes.
With regexes, it is useful for finding all the lines between two markers. Here is a simple example that shows how it works:
The flip flop operator will be true for all lines from
start
untilthis is the end
.The two dot version of the operator allows first and second regex to both match on the same line. So, if your data looked like this, the above program would only be true for the line
start blah end
:If you don't want the first and second regexes to match the same line, you can use the three dot version:
if (/start/ ... /end/)
.Note that care should be taken not to confuse the flip-flop operator with the range operator. In list context,
..
has an entirely different function: it returns a list of sequential values. e.g.I'm not familiar with Ruby, but Lee Jarvis's link suggests that it works similarly.
Here is a direct Ruby translation of @dan1111's demo (illustrating that Ruby stole more than the flip_flop from Perl):
More idiomatic ruby: