Feature request: `isAlpha`
See original GitHub issueChecks 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:
- Created 4 years ago
- Comments:5 (4 by maintainers)
Top 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 >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@ThakurKarthik Yes, pull request here https://github.com/plexis-js/plexis/pull/28 - just waiting for re-review after some version/alphabetising changes.
@RobFairclough 💪 Let’s do this!