The normalize-text tag has no wiki summary.
1
vote
2answers
124 views
Normalizing text file from abnormal newlines?
I have several text files that have lots of newlines between texts that I would like to normalize but there is no pattern to amount of newline between the texts for example:
Text
Some text
...
1
vote
1answer
609 views
tackle different types of utf hyphens in ruby 1.8.7
We have different types of hyphens/dashes (in some text) populated in db. Before comparing them with some user input text, i have to normalize any type of dashes/hyphens to simple hyphen/minus (ascii ...
7
votes
2answers
424 views
How do I properly implement Unicode passwords?
Adding support for Unicode passwords it an important feature that should not be ignored by developers.
Still, adding support for Unicode in passwords is a tricky job because the same text can be ...
20
votes
2answers
4k views
Programatic Accent Reduction in JavaScript (aka text normalization or unaccenting)
I need to compare 2 strings as equal such as these:
Lubeck == Lübeck
In JavaScript.
Why? Well, I have an auto-completion field that's going out to a Java service using Lucene, where place names ...