On Thu, 3 May 2012, Jacques Herry wrote:
> Hi Madis,�just a modif of your yeti.lang.std �strRightOf� which always
> return ""
>
> /* original �strRightOf subString s is string -> string -> string =
> � � � � i = strLastIndexOf s subString 0;
> � � � � if i < 0 then '' else strRight s (i + strLength subString) fi, */
>
> /* my modif */
> � �strRightOf subString s is string -> string -> string =
> � � � � i = strLastIndexOf s subString (strLength s);
> � � � � if i < 0 then '' else strRight s (i + strLength subString) fi,�
Should be fixed now using strLastIndexOf'. Updated the snapshot jar also:
http://linux.ee/~mzz/yeti/yeti.jar
> besides that :�I would use Yeti with FXML but do you plan to implement JSR-223 ?
Hadn't thought about it, but why not. I'm currently guessing that it means
just implementing some classes for interfacing with the java scripting engine?
If you want it sooner, I think you could implement it and send a patch.