I need to split value of array like
let v: Vec<&str> = token.split("Bearer ").collect();
and log the value of the token the value is Bearer eyJGciOiJSU and I need to get only eyJGciOiJSU
when I print the v[1] to the log I got error index out of range, any idea?