Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Create a text file with a template
Qt 6.11 is out! See what's new in the release blog

Create a text file with a template

Scheduled Pinned Locked Moved Unsolved General and Desktop
2 Posts 2 Posters 1.5k Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • beeckscheB Offline
    beeckscheB Offline
    beecksche
    wrote on last edited by
    #1

    Hi,
    i have to generate a text file. For that i want to use a template.
    My first idea is to create a template which looks like:

    template.txt:

    Filename: %1
    Author: %2
    Timestamp: %3 
    ..
    

    So when creating my file i can read that template and replace the %- values with the arg function of the QString class:

    QFile file("template.txt");
    file.open(QIODevice::ReadOnly);
    
    QTextStream in(&file);
    
    QString text = in.readAll();
    
    QString newText = text.arg("MyFilename").arg("Homer Simpson").arg("Today");
    
    // save newText in a new file
    
    file.close();
    

    In my template file are a lot of values to set, so the code is really ugly and hard to read with the number of .arg().arg().arg() ....

    Is there a better to realize that?

    Thanks!

    1 Reply Last reply
    0
    • SGaistS Offline
      SGaistS Offline
      SGaist
      Lifetime Qt Champion
      wrote on last edited by
      #2

      Hi,

      The Grantlee project might be of interest for your use case.

      Interested in AI ? www.idiap.ch
      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

      1 Reply Last reply
      2

      • Login

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • Users
      • Groups
      • Search
      • Get Qt Extensions
      • Unsolved