Tokenizing a string in c++

This page summarizes the projects mentioned and recommended in the original post on /r/cpp

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
  • abseil-cpp

    Abseil Common Libraries (C++)

  • The abseil library has a clever one called StrSplit(), that figures out what type of container you want back by the return value type you use. I.e., the one StrSplit() function dynamically changes its return type... sort of - or so it seems to someone using it. It's clever because the function actually returns a proxy, and that proxy has implicit conversion functions to the various container types it supports, and that's how it figures out what you want. So the actual splitting doesn't happen until that proxy gets converted, as opposed to when StrSplit() is invoked. Clever, but maybe too clever. :)

  • 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.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts