is_pangram: This function checks if the given string is a pangram

Description Usage Arguments Value Author(s) Examples

View source: R/is-pangram.R

Description

Tests whether a string or sentence is a pangram by removing special punctuation characters. A pangram is a sentence constructed using all the letters of the alphabet.

Usage

1

Arguments

str

A string or full sentence

Value

TRUE if s is a pangram and FALSE otherwise

Author(s)

Som Bohora

Examples

1
2
3
4
5
string = "The quick brown fox jumps over the lazy dog"
x = "Back in June we delivered oxygen equipment of the same size"

is_pangram(string)
is_pangram(x)

sbohora/Somya documentation built on May 14, 2019, 7:35 a.m.