Why are strings and IO so complicated?

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

InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  1. compile-time-regular-expressions

    Compile Time Regular Expression in C++

    I tend to use std::getline to read each line into a string and then a regular expression to break out the line. Where ‘regular expression’ is CTRE from https://github.com/hanickadot/compile-time-regular-expressions

  2. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
  3. flux

    A C++20 library for sequence-orientated programming (by tcbrindle)

    After that, I use this rather excellent library 😉 or CTRE if the input format is more complicated.

  4. pystring

    C++ functions matching the interface and behavior of python string methods with std::string

    If you are used to python strings give pystring from Sony Imageworks a go. https://github.com/imageworks/pystring

  5. advent_of_code_2023

    Here is my solution to today's problem, for example.

  6. advent_of_code

    C++23 solutions to advent of code puzzles -- all years complete. (by jwezorek)

    re: advent of code, I've been doing it this year in modern style C++, actually C++23 because I use ranges::to and ranges::views::zip.

  7. range-v3

    Range library for C++14/17/20, basis for C++20's std::ranges

    std::ranges is in c++20, but you can pull in the library it was based on if you use 17 (https://github.com/ericniebler/range-v3)

  8. strutil

    Header only C++ string utility library (by tgalaj)

    You want to: 1) checkout strutil: https://github.com/tgalaj/strutil (I used that for my 2022's AoC in C++ a lot) (also eigen: https://eigen.tuxfamily.org/index.php?title=Main_Page and tensorx: https://tensorx.org/ might not hurt) 2) checkout and compare with other people's code: https://github.com/Bogdanp/awesome-advent-of-code#c-2

  9. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  10. lexy

    C++ parsing DSL

    lexy (https://lexy.foonathan.net/)

  11. scnlib

    scanf for modern C++

    scnlib (https://github.com/eliaskosunen/scnlib) scanf

  12. aoc2023

    C++23 aoc 2023 (by GGCristo)

    I am doing aoc this year in modern C++, here is the Github link in case you want to take a look to learn or give some feedback https://github.com/GGCristo/aoc2023

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

  • 🚀Announcing conjure_enum - a C++20 enum and typename reflection Library

    1 project | dev.to | 31 Jul 2024
  • Show HN: Conjure_enum – a C++20 enum and typename reflection Library

    1 project | news.ycombinator.com | 30 Jul 2024
  • tiny::optional – a C++ optional that does not waste memory

    6 projects | /r/cpp | 23 Oct 2022
  • Implementing Regular Expressions in TypeScript Types (Badly)

    3 projects | news.ycombinator.com | 20 Oct 2024
  • Giving C++ std:regex a C makeover

    4 projects | news.ycombinator.com | 5 Sep 2024

Did you know that C++ is
the 7th most popular programming language
based on number of references?