IDEAScript to include @Functions
idea_new_user
Forums
Hello,
Is it possible to include @Functions e.g. @SimiliarPhrase() into IDEAScript?
Thanks and Regards!
I am not 100% sure but it is
I am not 100% sure but it is probably the Levenshtein Distance alogorithm. I have attached a custom function to redo the levenshtein distance for you. I think the documentation is incorrect as the closer the item is to 0 the more exact it is and a 0 means it is an exact match.
Brian
Hi idea_new_user and welcome
Hi idea_new_user and welcome to the site.
It is possible to use @Functions in your IDEAScript but unfortunately not all of them. You can use the @Functions by replacing the @ with an i, so @Left() becomes iLeft(). The problem is IDEA stopped adding this feature for new functions after V8. So any functions added in V9 or V10 don't have this feature. In your case the @SimiliarPhrase() I think was added in V10 so it can't be used in IDEAScript.
Brian