Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 37efcdb7 authored by Jérôme Euzenat's avatar Jérôme Euzenat
Browse files

- corrected quotation character in WordNet 3.0

parent a03d95bc
No related branches found
No related tags found
No related merge requests found
...@@ -327,6 +327,23 @@ public class StringDistances { ...@@ -327,6 +327,23 @@ public class StringDistances {
return 1.0 - (double)metrics.score( s1, s2 ); return 1.0 - (double)metrics.score( s1, s2 );
} }
/**
* @param s a String
* @return s without included quotations between ' or "
*/
public static String stripQuotations( String s ) {
int sLength = s.length();
String result = "";
int sStart = 0;
int sEnd = sStart;
while ( sStart < sLength ) {
while ( sEnd < sLength && s.charAt(sStart) != '\"' ) sEnd++;
if ( sEnd < sLength ) result += s.substring(sStart, sEnd);
while ( sEnd < sLength && s.charAt(sStart) != '\"' ) sEnd++;
sStart = sEnd;
}
return result;
}
/** /**
* JE//: This is independent from WordNet and should go to StringDistances * JE//: This is independent from WordNet and should go to StringDistances
...@@ -340,8 +357,10 @@ public class StringDistances { ...@@ -340,8 +357,10 @@ public class StringDistances {
* if it is a suffix * if it is a suffix
* otherwise the last letter will be taken as the new token * otherwise the last letter will be taken as the new token
* start * start
*
* Would be useful to parameterise with stop words as well
*/ */
public static Vector<String> tokenize(String s) { public static Vector<String> tokenize( String s ) {
String str1 = s; String str1 = s;
int sLength = s.length(); int sLength = s.length();
Vector<String> vTokens = new Vector<String>(); Vector<String> vTokens = new Vector<String>();
...@@ -394,10 +413,7 @@ public class StringDistances { ...@@ -394,10 +413,7 @@ public class StringDistances {
} }
tkStart=tkEnd; tkStart=tkEnd;
} }
} } else { // else the standard naming convention will be used
// else the standard naming convention will be used
else{
// start at the beginning of the string // start at the beginning of the string
tkStart = 0; tkStart = 0;
tkEnd = tkStart; tkEnd = tkStart;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment