Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
933 views
in Technique[技术] by (71.8m points)

string - What is the equivalent of stringByFoldingWithOptions:locale: in Java?

I am looking for the way to normalise the list of titles. The title is normalized to be stored in a database as a sort and look up key. "Normalize" means many things such as converting to lowercase, removing the roman accent character, or removing preceding "the", "a" or "an".

In iOS or Mac, NSString class has stringByFoldingWithOptions:locale: method to get the folding version of string.

NSString Class Reference - stringByFoldingWithOptions:locale:

In Java, java.uril.Collator class seems to be useful for comparing, but there seems no way to convert for such purpose.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can use java.text.Normalizer which comes close to normalizing Strings in Java. Though regex are also a powerful way to manipulate the Strings in whichever way possible.

Example of accent removal:

String accented = "árvízt?r? tük?rfúrógép";
String normalized = Normalizer.normalize(accented,  Normalizer.Form.NFD);
normalized = normalized.replaceAll("[^\p{ASCII}]", "");

System.out.println(normalized);

Output:

arvizturo tukorfurogep

More explanation here: http://docs.oracle.com/javase/tutorial/i18n/text/normalizerapi.html


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...