Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3963846
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T03:15:49+00:00 2026-05-20T03:15:49+00:00

How can I allow single hyphens and single spaces only within words but not

  • 0

How can I allow single hyphens and single spaces only within words but not at the beginning or at the end of the words?

if(!preg_match('/^[a-zA-Z0-9\-\s]+$/', $pg_tag))
    {
        $error = true;
        echo '<error elementid="pg_tag" message="TAGS - only alphanumbers and hyphens are allowed."/>';
    }

I don’t want to accept these inputs below

---stack---over---flow---
stack-over-flow- stack-over-flow2
   stack    over    flow

but only these are acceptable,

stack-over-flow stack-over-flow2 stack-over-flow3
stack over flow
stacoverflow

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T03:15:49+00:00Added an answer on May 20, 2026 at 3:15 am
    $aWords = array(
        'a',
        '---stack---over---flow---',
        '   stack    over    flow',
        'stack-over-flow',
        'stack over flow',
        'stacoverflow'
    );
    
    foreach($aWords as $sWord) {
        if (preg_match('/^(\w+([\s-]\w+)?)+$/', $sWord)) {
            echo 'pass: ' . $sWord . "\n";
        } else {
            echo 'fail: ' . $sWord . "\n";
        }
    }
    

    And the output:

    pass: a
    fail: ---stack---over---flow---
    fail:    stack    over    flow
    pass: stack-over-flow
    pass: stack over flow
    pass: stacoverflow
    

    A breakdown of the Regex:

    ^             # Match from the very beginning of the string
    (             # Start Group
        \w+       # At least one "word" character
        (         # Start Subgroup
           [\s-]  # A single space or a dash
           \w+    # At least one "word" character
        )?        # End Subgroup is optional
    )+            # End group - allow it multiple times
    $             # Match until the very end of the string
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Currently, the example provided in QuickFIX/J, only allow single executor to talk with single
Is there a python library out there than can allow me to send UDP
How can you allow a PHP script to write to a file with high-security
How can one allow code snippets to be entered into an editor (as stackoverflow
Can anyone recommend a simple API that will allow me to use read a
Can anyone tell me if there are RDBMSs that allow me to create a
I'm specifically interested in tools that can be plugged into Vim to allow CScope-style
A lot of programming languages and frameworks do/allow/require something that I can't seem to
Is there a tool like phpMyAdmin which can be configured to access only a
How can I allow one of my string parameters to be an empty string?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.