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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T14:02:58+00:00 2026-05-27T14:02:58+00:00

I have a problem. I want a user to be allowed to write everything

  • 0

I have a problem.

I want a user to be allowed to write everything you can SEE on a Swedish keyboard (not using a character map or similar). This means all English alphanumeric characters and åäö. The non-alphanumeric characters which is allowed is §½!"@#£¤$%&{/()[]=}?+\´`^ and so on.

My expression is:

[\wåäö§½!"@#£¤$%&/{()=}?\\\[\]+´`^¨~'*,;.:\-_<>|]

In C# it looks like this:

Regex allowedChars = new Regex("@[\\wåäö§½!\"@#£¤$%&/{()=}?\\\\[\\]+´`^¨~'*,;.:\\-_<>|]");

I check it with:

if (allowedChars.IsMatch(mTextBoxUserName.Text.Trim()))

The problem is that if i write a faulty character together with an allowed character the if statement think its a match. I want it to match it for the entire word. I tried adding a “+” at the end of the expression but then it never matched…

Any ideas?

  • 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-27T14:02:58+00:00Added an answer on May 27, 2026 at 2:02 pm

    Two things:

    1. Your string erroneously has the @ character inside rather than before the string. This may have been a copy paste error, or it might not have been.

      // put the @ outside the ""
      new Regex(@"[\wåäö§½!""@#£¤$%&/{()=}?\\[\]+´`^¨~'*,;.:\-_<>|]");
      
    2. You’re only checking that one of the allowed characters is present, rather than ONLY the allowed characters. You can use anchoring and repetition to solve this problem:

      // anchor using ^ and $, use []+ to ensure the string is ONLY made
      // up from that character class. Also move the - to be the last symbol
      // to avoid inadvertent ranging
      new Regex(@"^[\wåäö§½!""@#£¤$%&/{()=}?\[\]+´`^¨~'*,;.:\\_<>|-]+$");
      
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a bit of a problem with user controls. Basically what I want
I have problem with fancybox. I want to write a function that will run
I have a problem and I want to implement the MVC pattern to my
I have problem with return statment >.< I want to store all magazine names
I have problem with HTTP headers, they're encoded in ASCII and I want to
I have problem with dynamically created image (JavaScript). I want to change the innerHTML
with my RCP program I have the problem that I want to have more
The Problem I want to press a key when I have a line highlighted
I have a little Java problem I want to translate to Python. Therefor I
I have a small problem where I want to find the next active item

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.