Change Log for the latest
XYplorer BETA version:
Code: Select all
v10.60.0120 - 2011-12-06 13:42
+ SC strpos enhanced: Now negative start positions are supported to
begin searching from the start position leftwards.
Examples:
echo strpos("abcab", "b", 5); // -1 (not found)
echo strpos("abcab", "b", 4); // 4
echo strpos("abcab", "b", 3); // 4
echo strpos("abcab", "b", 2); // 4
echo strpos("abcab", "b", 1); // 1
echo strpos("abcab", "b", 0); // 1
echo strpos("abcab", "b", -1); // 4
echo strpos("abcab", "b", -2); // 1
echo strpos("abcab", "b", -3); // 1
echo strpos("abcab", "b", -4); // 1
echo strpos("abcab", "b", -5); // -1 (not found)
So, to search from the end of the string you pass -1 as start
position.
+ List Management: Added the two MRU tabsets lists.
To
download the latest BETA version choose a download package: (1)
Installer Package, (2)
No-Install Package.
Note that BETA versions are work in progress and might contain fresh bugs. You have been warned.
It's a good idea to backup your complete XYplorer settings (menu File | Settings | Backup your Application Data Folder)
before running a new BETA version. This will also help in fixing any fresh bugs.