Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FullWidthToHalfWidthAlphabetNormalizer (0.23 sec)

  1. src/main/java/org/codelibs/fess/suggest/normalizer/FullWidthToHalfWidthAlphabetNormalizer.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.suggest.normalizer;
    
    public class FullWidthToHalfWidthAlphabetNormalizer implements Normalizer {
        @Override
        public String normalize(final String text, final String field, final String... langs) {
            final char[] chars = new char[text.length()];
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/util/SuggestUtil.java

            normalizerChain.add(new AnalyzerNormalizer(client, settings));
            /*
             * normalizerChain.add(new HankakuKanaToZenkakuKana()); normalizerChain.add(new
             * FullWidthToHalfWidthAlphabetNormalizer()); normalizerChain.add(new ICUNormalizer("Any-Lower"));
             */
            return normalizerChain;
        }
    
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Sat Oct 12 00:10:39 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top