TextPipe bug in Replace Exact when Find = \rc
Posted: Wed Apr 02, 2008 6:14 am
When the Find pattern isand the Find type is Exact, then TextPipe v8.0.9 treats the backslash as if it were part of a Perl pattern, so it does not find the pattern.
I think this is a critical bug.
TextPipe is using \r\n to display and list [CR][LF] even in Exact filters.
It would seem that instead of restricting this representation to how it displays the pattern, it is also doing this for how it uses the pattern.
Hence the following pattern is in effect being treated as if it were which is inherently wrong.
Code: Select all
\rc
I think this is a critical bug.
TextPipe is using \r\n to display and list [CR][LF] even in Exact filters.
It would seem that instead of restricting this representation to how it displays the pattern, it is also doing this for how it uses the pattern.
Hence the following pattern
Code: Select all
abc\rdef
Code: Select all
abc
def