search for: abca

Displaying 2 results from an estimated 2 matches for "abca".

Did you mean: abc
2008 Jun 11
5
Similar words
Is there a way to get a list of similar words to the ones a user has searched for? So if they search for (in my case) transferaze which has no matches I can get back an array like this [''transferase''] ? I know I can just add ~ on the end to make it fuzzy, but what I''d like is to be able to say "Sorry, no matches for ''transferaze''. Did you
2008 Apr 06
3
Multiset Permutations
...;}; String[] perms = GetPermutations(set); Arrays.sort(perms, String.CASE_INSENSITIVE_ORDER); for(int i=0; i<perms.length; i++){ System.out.println(perms[i]); } } } ------------------------- END JAVA CODE ----------------------------- This code prints the following: AABC AACB ABAC ABCA ACAB ACBA BAAC BACA BCAA CAAB CABA CBAA -- View this message in context: http://www.nabble.com/Multiset-Permutations-tp16529735p16529735.html Sent from the R help mailing list archive at Nabble.com.