├── .State ├── .gitignore ├── Bin ├── Fromcode.php └── Tocode.php ├── CHANGELOG.md ├── Documentation ├── En │ └── Index.xyl └── Fr │ └── Index.xyl ├── README.md ├── Source ├── Exception.php ├── Search.php └── Ustring.php ├── Test └── Unit │ ├── Issue.php │ ├── Search.php │ └── Ustring.php └── composer.json /.State: -------------------------------------------------------------------------------- 1 | finalized 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /composer.lock 3 | -------------------------------------------------------------------------------- /Bin/Fromcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoaproject/Ustring/HEAD/Bin/Fromcode.php -------------------------------------------------------------------------------- /Bin/Tocode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoaproject/Ustring/HEAD/Bin/Tocode.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoaproject/Ustring/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Documentation/En/Index.xyl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoaproject/Ustring/HEAD/Documentation/En/Index.xyl -------------------------------------------------------------------------------- /Documentation/Fr/Index.xyl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoaproject/Ustring/HEAD/Documentation/Fr/Index.xyl -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoaproject/Ustring/HEAD/README.md -------------------------------------------------------------------------------- /Source/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoaproject/Ustring/HEAD/Source/Exception.php -------------------------------------------------------------------------------- /Source/Search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoaproject/Ustring/HEAD/Source/Search.php -------------------------------------------------------------------------------- /Source/Ustring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoaproject/Ustring/HEAD/Source/Ustring.php -------------------------------------------------------------------------------- /Test/Unit/Issue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoaproject/Ustring/HEAD/Test/Unit/Issue.php -------------------------------------------------------------------------------- /Test/Unit/Search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoaproject/Ustring/HEAD/Test/Unit/Search.php -------------------------------------------------------------------------------- /Test/Unit/Ustring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoaproject/Ustring/HEAD/Test/Unit/Ustring.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoaproject/Ustring/HEAD/composer.json --------------------------------------------------------------------------------