question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Feature request: `isAlpha`

See original GitHub issue

Checks whether the input text contains only alpha characters.

Example usage

import isAlpha from '@plexis/is-alpha';

isAlpha('ABCD');
// => true

isAlpha('Apollo11');
// => false

isEmpty('1');
// => false

isEmpty('Hello,world');
// => false

isAlpha('');
// => false

isEmpty('   ');
// => false

Aliases

import isAlpha from '@plexis/is-alpha';
import {isAlpha} from 'plexis';

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Comments:5 (4 by maintainers)

github_iconTop GitHub Comments

1reaction
RobFaircloughcommented, Oct 23, 2019

@ThakurKarthik Yes, pull request here https://github.com/plexis-js/plexis/pull/28 - just waiting for re-review after some version/alphabetising changes.

1reaction
vorillazcommented, Oct 20, 2019

@RobFairclough 💪 Let’s do this!

Read more comments on GitHub >

github_iconTop Results From Across the Web

Is there a way to include isAlpha with spaces yet? · Issue #1282
Looking for a validator that would accept "My Awesome Project", but reject "My Awesome Project 99". Right now, I think both would be...
Read more >
- isalpha()
The isalpha() function tests if the argument c is an alphabetic character ( a to z and A to Z ). An alphabetic...
Read more >
isalpha Python - etutorialspoint
Python provides many built-in methods for string handling. The isalpha() method is one of them that returns true if all the characters in...
Read more >
Function std.ascii.isAlpha - D Programming Language
Display the source code in std/ascii.d from which this page was generated on github. ... If you spot a problem with this page,...
Read more >
Mac OS X Manual Page For isalpha(3) - Apple Developer
This document is a Mac OS X manual page. Manual pages are a command-line technology for providing documentation. You can view these manual...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found