walter.l...@schwindt.eu <> wrote:
> Hello,
>
> I have to analize a text document and want to get all lines like:
>
>> <
>> #
> (where F is a floating point number between the two characters >< )
>
> but only, if all four floating numbers are identical!
>
>
> Example f
Well, it depends on how specific you need the regex to be. Could any of the
F values below be text? Are they always float values?
If I was doing this in Perl I would do it like this:
$data_line =~ />(\d\.\d)<.*>(\d\.\d)<.*>(\d\.\d)<.*>(\d\.\d) wrote:
> Hello,
>
> I have to analize a text documen
Hello,
I have to analize a text document and want to get all lines like:
>< #
(where F is a floating point number between the two characters >< )
but only, if all four floating numbers are identical!
Example for a text:
text>text5.35.35.35.3<
>4.23.04.24.2<
Here, o