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 7027129
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T00:12:26+00:00 2026-05-28T00:12:26+00:00

I’ve written a regex to help validate a String for game character names. It’s

  • 0

I’ve written a regex to help validate a String for game character names. It’s somehow passing seemingly invalid strings and not passing seemingly valid strings.

Requirements:

  • Starts with a capital letter
  • Has any number of alphanumeric characters after that (this includes spaces)

This is the rails code that does the validation in the Character Model:

validates :name, format: { with: %r{[A-Z][a-zA-Z0-9\s]*} }

Here’s the unit test I’m using

test "character name should be properly formatted and does not contain any special characters" do
    character = get_valid_character
    assert character.valid?

    character.name = "aBcd"
    assert character.invalid?, "#{character.name} should be invalid"

    character.name = "Number 1"
    assert character.valid?, "#{character.name} should be valid"

    character.name = "McDonalds"
    assert character.valid?, "#{character.name} should be valid"

    character.name = "Abcd."
    assert character.invalid?, "#{character.name} should be invalid"

    character.name = "Abcd%"
    assert character.invalid?, "#{character.name} should be invalid"
end

The problems:
The regex passes “aBcd”, “Abcd.”, and “Abcd%” when it shouldn’t. Now, I know this works because I tested this out in Python and it works just as you would expect.

What gives?

Thank you for your help!

  • 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-28T00:12:27+00:00Added an answer on May 28, 2026 at 12:12 am

    Regular expressions look for matches anywhere in the given string unless told otherwise.

    So the test string 'aBcd' is invalid, but it contains a valid substring: 'Bcd'. Same with 'Abcd%', where the valid substring is 'Abcd'.

    If you want to match the entire string, use this as your regex:

    # \A matches string beginning, \z matches string end
    %r{\A[A-Z][a-zA-Z0-9\s]*\z}
    

    PS: Some people will say to match the beginning of a string with ^ and the end with $. In Ruby, those symbols match the beginning and end of a line, not a string. So "ABCD\n%" would still match if you used ^ and $, but won’t match if you use \A and \z. See the Rails security guide for more on this.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I need a function that will clean a strings' special characters. I do NOT
I'm trying to use string.replace('’','') to replace the dreaded weird single-quote character: ’ (aka
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I want to count how many characters a certain string has in PHP, but
I would like to count the length of a string with PHP. The string
For some reason, after submitting a string like this Jack’s Spindle from a text
I've got a string that has curly quotes in it. I'd like to replace
Specifically, suppose I start with the string string =hello \'i am \' me And
Seemingly simple, but I cannot find anything relevant on the web. What is the

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.