Skip to content

Convenient str interpolation function for C++

License

Notifications You must be signed in to change notification settings

PooperPig/interpStr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

interpStr

Convenient str interpolation function for C++

It takes a string with special formatting symbols and generate a sequence of strings.

Examples:

"/this/is/a/string[1-3].png" will give you a list of strings: "/this/is/a/string1.png", "/this/is/a/string2.png", "/this/is/a/string3.png"

###Format rules:

[1-3] -> 1,2,3

[01-03] -> 01, 02, 03

[01-03, 04, 05, 06-08] -> 01, 02, 03, 04, 05, 06, 07, 08

About

Convenient str interpolation function for C++

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages