Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6134613
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T17:22:39+00:00 2026-05-23T17:22:39+00:00

I’m currently learning the HDF5 API and I’m trying to insert a set of

  • 0

I’m currently learning the HDF5 API and I’m trying to insert a set of C++ std::string into a HDF5 dataset (1 column).

In the following snippet, how should I loop over a vector<string> and insert each string at the right index ?

How should I tell HDF5 whether I want to use a fixed-length string or a can-have-any-length std::string ?

vector<string> samples;
(...)
/* create HDF5 file */
hid_t       hdf5file= H5Fcreate(hdf5_filename, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
if(hdf5file==-1)
    {
    cerr << "Cannot create HDF5 file "<< hdf5_filename << endl;
    return(EXIT_FAILURE);
    }
/* create a group in this file */
hid_t    group = H5Gcreate2(hdf5file, "/MyGroup", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
if(group==-1)
    {
    cerr << "Cannot create HDF5 group  "<< endl;
    return(EXIT_FAILURE);
    }
/* create a dataspace for the samples array of one dimension */
hsize_t dim1=samples.size();
hid_t dataspace = H5Screate_simple(1, &dim1, NULL);
if(dataspace==-1)
    {
    cerr << "Cannot create HDF5 dataspace  "<< endl;
    return(EXIT_FAILURE);
    }
/* create datatype for a string . How shoud I tell if i want a fixed-length string or a can-have-any-length string ?*/
hid_t datatype = H5Tcopy(H5T_C_S1);
if(datatype==-1)
    {
    cerr << "Cannot create H5Tset_size  "<< endl;
    return(EXIT_FAILURE);
    }
int ret = H5Tset_size (datatype, H5T_VARIABLE);
if(ret!=0)
    {
    cerr << "Cannot create H5Tset_size  "<< endl;
    return(EXIT_FAILURE);
    }
hid_t dataset = H5Dcreate2(group, "Samples", datatype, dataspace,
        H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);

for(vector<string>::size_type i=0;i< samples.size();++i)
    {
    /** here I'm puzzled, how should I insert the value of samples[i].c_str() at
            the i-th index of the dataset ? */
    const char* sampleName= samples[i].c_str() ;
    ????
        ????
    ????
    }

/* close data set */
H5Dclose(dataset);
/* close datatype */
H5Tclose(datatype);
/* close the dataspace */
H5Sclose(dataspace);


/* close the group */
 H5Gclose(group);

/* close hdf5 file */
H5Fclose(hdf5file);
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T17:22:39+00:00Added an answer on May 23, 2026 at 5:22 pm

    First, make a C-style array of char* with pointers to your strings:

    const size_t n = samples.size();
    char* data[n];
    for (size_t i = 0; i < n; i++)
    {
        data[i] = samples[i].c_str();
    }
    

    Then write everything in one go:

    H5Dwrite(dataset, datatype, dataspace, H5S_ALL, H5P_DEFAULT, data);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I am currently running into a problem where an element is coming back from
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I'm trying to use string.replace('’','') to replace the dreaded weird single-quote character: ’ (aka
I want to count how many characters a certain string has in PHP, but
I would like to count the length of a string with PHP. The string
For some reason, after submitting a string like this Jack’s Spindle from a text
I am trying to understand how to use SyndicationItem to display feed which is
Basically, what I'm trying to create is a page of div tags, each has

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.