将char *转换为SEXP

时间:2016-08-31 13:03:10

标签: r rcpp

我需要将已知长度的const char*转换为Rcpp::RawVector才能返回到R中。

Rcpp::wrap适用于多种类型,但似乎不适用于char *

1 个答案:

答案 0 :(得分:6)

library(Rcpp)
library(inline)

ƒ <- rcpp(body='
const char* text = "this is some text";
Rcpp::RawVector rv(strlen(text));
for(unsigned int i=0; i<strlen(text); i++) { rv[i] = text[i]; }
return(rv);
')

ƒ()
##  [1] 74 68 69 73 20 69 73 20 73 6f 6d 65 20 74 65 78 74

rawToChar(ƒ())
## [1] "this is some text"

<强>更新

@nrussellmethod更好:

#include <Rcpp.h>
#include <cstring>

// [[Rcpp::export]]
Rcpp::RawVector to_raw(const char* str) {
    Rcpp::RawVector res(str, str + std::strlen(str));
    return res;
}