Here, see the problem :
Code: Select all
set $m,"foo<br>bar";
strpos $p,$m,"<br>";
msg $p;
// shows 3, as expected
copytext "foo<br>bar";
set $m,<clipboard>;
strpos $p,$m,"<br>";
msg $p;
// shows -1 (not found) !!Problem is, XY tells me there are no CRLF all the time, even when there are, unless I don't search for "<br>" but copy it to the clipboard and search for the clipboard, a pretty unexpected thing...
Here's another one I think is wrong :
Code: Select all
br "<br>";
set $m,"foo<br>bar";
msg $m;
br "CRLF";
msg $m;After all, this shows the same thing :
Code: Select all
copytext "FOO";
set $m,"foo<clipboard>bar";
msg $m;
copytext "BAR";
msg $m;
XYplorer Beta Club