Skip to content

rmtomal00/cpp_string_format_header

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

/*1st parameter is need to a sting which contain with {} simbol. second pamaneter how many args you want to add in the string. 3rd add the value which you want. Exp: I that this string like "Hello, I am 18 years old. I have 1 dog". there the string will be "Hello, I am { } years old. I have { } dog" the argsNumber will be 2, and (...) 18, 1 */

/*Code Exp:

     #include <format.h>
     #include <iostream>

     using namespace std;

     int main(){
         StringFormat sf;
         sf.string_format("Hello, I am { } years old. I have { } dog", 2, 18,1)
     }

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages