how can i convert a char* into std_msgs::String [closed]
Hello, std_msgs::String data1; char buffer[20];
I just want to do data1.something = buffer
ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
Hello, std_msgs::String data1; char buffer[20];
I just want to do data1.something = buffer
The single member of std_msgs::String
is a std::string
named data
. The normal conversions between char *
and std::string
apply (among others, the assignment operator works):
std_msgs::String message;
char buffer[20] = "Hello World";
message.data = buffer;
Asked: 2019-09-22 20:58:28 -0500
Seen: 1,559 times
Last updated: Sep 22 '19
Problems linking pcl::io in ROS indigo
Best practices to use subscriber inside a class
How can I update/remove cmake without partially deleting my ROS distribution?
Error: The manifest (with format version 2) must not contain the following tags: run_depend
Errors while installing ros-indigo on Ubuntu 14.04
Basic understanding of how ROS works
Connecting a Sick laserscanner via ethernet
Not related to ROS in any way. https://www.geeksforgeeks.org/how-to-...