Code Monkey home page Code Monkey logo

zame-haxe-stringutils's Introduction

String utils for Haxe

  • Utf8Ext
  • Transliteration

About

Installation

haxelib git zame-stringutils https://github.com/restorer/zame-haxe-stringutils.git

Utf8Ext

Haxe have excellent haxe.Utf8 class, which allows us to work with utf-8 in a cross-platform way.

But what about cross-platform toLowerCase() or toUpperCase()? What regular expression should I write to replace all non-letters (including unicode ones) with, say, spaces?

Utf8Ext will take care about this on neko, cpp and php, with fallback to native implementation for other platforms.

  • Use Utf8Ext.toLoweCase() to convert utf-8 string to lover case, across all platforms.
  • Use Utf8Ext.toUpperCase() to convert utf-8 string to upper case, across all platforms.
  • Use Utf8Ext.getUnicodeRe() to get regular expression that matches all characters, including unicode (like /[\p{L}]/ in PCRE).
  • Use Utf8Ext.getUnicodeRe("^") to get regular expression that matches all non-characters (like /[\P{L}]/ in PCRE).
  • Utf8Ext.getUnicodeRe("0-9") will match numbers and characters, while Utf8Ext.getUnicodeRe("^0-9") will match anything, except numbers and characters.

Transliteration

Allows you to generate cool-looking SEO-friendly URL from string on belarusian language.

trace(Transliteration.be("Уладзімір Караткевіч - Хрыстос Прызямліўся Ў Гародні"));

will give you uladzimir-karatkievich-khrystos-pryziamliwsia-w-harodni

Roadmap for future

  • Add russian language support to Transliteration class

zame-haxe-stringutils's People

Watchers

Stéphane Le Dorze avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.