I'm new to R and i'm trying to read some files with an annotation string for each filename. Using the c() function to build a list of annotated filenames i get inconsistent results, as in the following example. Why does c() result in two different types when using similar strings?
> print(c("_latency_measurements_2022-10-28-02-18-delay35.txt", "35ms"))
[1] "_latency_measurements_2022-10-28-02-18-delay35.txt"
[2] "35ms"
> print(c("_latency_measurements_2022-10-28-02-18-delay3.txt", "35ms"))
[1] "_latency_measurements_2022-10-28-02-18-delay3.txt" "35ms"