← 返回首页
GitHub - catchorg/textflowcpp: A simple, single-header-only library, for wrapping text. In C++ · GitHub
Skip to content

Navigation Menu

Toggle navigation
Sign in
Appearance settings
Search or jump to...

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Include my email address so I can be contacted

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Resetting focus

catchorg/textflowcpp

 master
Go to file
Code

Repository files navigation

A simple way to wrap a string at different line lengths, optionally with indents.

e.g.

std::cout << Column( "This is quite a long string" ).width( 8 ) << std::endl;

will output:

This is quite a long string

Columns can be combined, too:

auto a = Column( "This is a load of text that should go on the left" ) .width( 10 ); auto b = Column( "Here's some more strings that should be formatted to the right. " "It's longer so there should be blanks on the left" ) .width( 12 ) .initialIndent( 2 ); auto layout = a + Spacer( 4 ) + b; std::cout << layout << std::endl;

gives you:

This is a Here's load of some more text that strings that should go should be on the formatted to left the right. It's longer so there should be blanks on the left

Not bad!

You can also iterate the lines (which are generated lazily), both from Column and the combined Columns.

See the tests for more.

About

A simple, single-header-only library, for wrapping text. In C++

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

Footer

© 2026 GitHub, Inc.