text VS janet-utf8

Compare text vs janet-utf8 and see what are their differences.

text

A spicy text library for C++ that has the explicit goal of enabling the entire ecosystem to share in proper forward progress towards a bright Unicode future. (by soasis)

janet-utf8

Janet routines for utf8 handling (by andrewchambers)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
text janet-utf8
10 1
299 16
2.0% -
6.8 10.0
4 months ago over 2 years ago
C++ C
GNU General Public License v3.0 or later MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

text

Posts with mentions or reviews of text. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-10-02.

janet-utf8

Posts with mentions or reviews of janet-utf8. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-10-02.
  • The Absolute Minimum Every Software Developer Must Know About Unicode in 2023
    7 projects | news.ycombinator.com | 2 Oct 2023
    Regarding UTF-8 encoding:

    “And a couple of important consequences:

    - You CAN’T determine the length of the string by counting bytes.

    - You CAN’T randomly jump into the middle of the string and start reading.

    - You CAN’T get a substring by cutting at arbitrary byte offsets. You might cut off part of the character.”

    One of the things I had to get used to when learning the programming language Janet is that strings are just plain byte sequences, unaware of any encoding. So when I call `length` on a string of one character that is represented by 2 bytes in UTF-8 (e.g. `ä`), the function returns 2 instead of 1. Similar issues occur when trying to take a substring, as mentioned by the author.

    As much as I love the approach Janet took here (it feels clean and simple and works well with their built-in PEGs), it is a bit annoying to work with outside of the ASCII range. Fortunately, there are libraries that can deal with this issue (e.g. https://github.com/andrewchambers/janet-utf8), but I wish they would support conversion to/from UTF-8 out of the box, since I generally like Janet very much.

    One interesting thing I learned from the article is that the first byte can always be determined from its prefix. I always wondered how you would recognize/separate a unicode character in a Janet string since it may have 1-4 bytes length, but I guess this is the answer.

What are some alternatives?

When comparing text and janet-utf8 you can also consider the following projects:

jarro2783/cxxopts - Lightweight C++ command line option parser

grapheme-splitter-lite - A light-weight Java library that breaks strings into user-perceived characters a.k.a. Grapheme Clusters for common cases.

CLI11 - CLI11 is a command line parser for C++11 and beyond that provides a rich feature set with a simple and intuitive interface.

xi-editor - A modern editor with a backend written in Rust.

pugixml - pugixml binding for haskell.

tonsky.me

stlkrn - C++ STL in the Windows Kernel with C++ Exception Support

hn-search - Hacker News Search

argumentum - C++ command line parsing library

args - A simple header-only C++ argument parser library. Supposed to be flexible and powerful, and attempts to be compatible with the functionality of the Python standard argparse library (though not necessarily the API).

tclap - Templatized C++ Command Line Parser mirror

args - Simple and type-safe commandline argument parser for C++14