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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T07:15:06+00:00 2026-06-17T07:15:06+00:00

I am trying to write a function which takes a string as an argument

  • 0

I am trying to write a function which takes a string as an argument and checks if that string contains only one non-alphanumeric character, if this is the case then return true, if not, return false.

For example:

'Alex's' would return true. 
James..Warner would return false.

My current code is below, but I don’t feel that its working. As I have a count elsewhere which basically counts the true’s. Done using a map which contains the strings. And the value which I am getting for the count is too high for the words that are being input.

bool Class3::filter(string word)
    {
        string s = word;
        int len = s.size();

        for (int i=0; i<len; i++)
        {   if(!isalnum(s[i])){
            return true;}
            else{return false;}  
        }
     }
  • 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-06-17T07:15:07+00:00Added an answer on June 17, 2026 at 7:15 am

    You aren’t counting the number of non-alphanumeric characters in your code, do you? you just return true or false on the first character.

    Unless you count, you won’t find the answer. However, you can stop at the second non-alphanum.

    Since you seem to need the exercise in writing code, here’s some psuedo-code:

    int nonalphas = 0;
    for ( char in string )
        if ( char is nonalpha )
            nonalphas++;
            if ( nonalphas > 1 )
                break;
    return nonalphas == 1;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to write a function that takes multiple arguments, which can come either
I'm trying to write a function that takes a stream as an argument and
I'm trying to write a class that its constructor takes as argument a String
i am trying to write one function which return sql statement like function get_sql($name=0,$date_start=0,$date_end=0)
I am trying to write a function that takes some strings and does something
I am trying to write a function that takes File object, offset and byte
For an assignment, I am trying to write a function named Exam, which takes
I'm trying to write a Java function that takes a Class<?> and returns a
I trying to write a generic function which takes the function and number of
I am trying to write a function which takes a vector of dates as

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.