Learn R Programming

xfun (version 0.48)

is_web_path: Test if a path is a web path

Description

Check if a path starts with http:// or https:// or ftp:// or ftps://.

Usage

is_web_path(x)

Value

A logical vector.

Arguments

x

A vector of paths.

Examples

Run this code
xfun::is_web_path("https://www.r-project.org")  # TRUE
xfun::is_web_path("www.r-project.org")  # FALSE

Run the code above in your browser using DataLab