PostgreSQL
 sql >> Teknologi Basis Data >  >> RDS >> PostgreSQL

Impor byte mentah sebagai byte mentah di R

Ini berfungsi untuk mengonversi string karakter tunggal dari jenis yang telah Anda gambarkan menjadi vektor mentah.

## The string I think you're talking about
dat <- "\\x1f8b080000000000"
cat(dat, "\n")
## \x1f8b080000000000

## A function to convert one string to an array of raw
f <- function(x)  {
    ## Break into two-character segments
    x <- strsplit(x, "(?<=.{2})", perl=TRUE)[[1]]
    ## Remove the first element, "\\x"
    x <- x[-1]
    ## Complete the conversion
    as.raw(as.hexmode(x))
}

## Check that it works
f(dat)
##  [1] 1f 8b 08 00 00 00 00 00



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Driver JDBC PostgreSQL dengan Android

  2. Bagaimana Membandingkan Array di PostgreSQL

  3. Wadah Docker untuk Postgres 9.1 tidak mengekspos port 5432 ke host

  4. Kombinasi PostgreSQL berbeda dari permutasi

  5. Mengapa database Postgres saya berfungsi untuk sementara waktu dan kemudian tidak dapat memulai server setelah dimulai ulang?