Hi,
I am working with URL addresses as values of a variable.
Some of the addresses have a c in front of them. For example my data look something like this:
chttp://xyz.com.jpg
http://xyz2.com.jpg
chttp://xyz3.com.jpg
http://xyz4.com.jpg
How do I get rid of that first c without also removing the c in .com?
For example, I was trying this code but it was removing both c's
str_remove(URL$ext_media_url, "[c]")
I also can't remove just the first character because it would remove the "h" from the correct http urls.
Any advice would be greatly appreciated!
Thanks!