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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T00:49:30+00:00 2026-06-15T00:49:30+00:00

I need some logic to find a grammatical pattern like in a sentence: [adjective]*

  • 0

I need some logic to find a grammatical pattern like in a sentence:

[adjective]* [noun]+ [hyphen] [verb Past Participle | verb Present Participle | one of the special adjectives] [adjective]* [noun]+

where * means any number (0 or more), ? means 0 or 1, and + means 1 or more, | means or.

If i give any input sentence the logic has to search if it contains the above pattern or not.
I completely have no idea how to begin.
Please if anyone could suggest me with some logic.

  • 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-15T00:49:32+00:00Added an answer on June 15, 2026 at 12:49 am

    This is pseudo code. It makes 2 passes on the input, in the first pass it converts each word in the input string to a letter which refers to its type, and on the second pass you match the result of the first pass with your regular expression.

    method(input) {
        typed_input = '';
        for (word in input) {
            if (word is noun) {
                typed_input += 'n'
            else if (word is adjective)
                typed_input += 'a'
            else if (word is hyphen)
                typed_input += 'h'
            else if (word is verb Past Participle)
                typed_input += 'v'
            else if (word is verb Present Participle)
                typed_input += 'p'
            else if (word is one of the special adjectives)
                typed_input += 's'
            else
               throw exception("invalid input")
        }
        return typed_input.match("a*n+h[v|p|s]a*n+")
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've got three tables posts tags posts_tags I need to write some controller logic
I need to put it some custom logic into my iPhone app so that
I need some help. I am calling the login function from another class, //
I need some advanced CSS help here. I have a login button and a
I need to implement for current project some secure login in php. I wrote
I'm doing some design/debugging in IRB and need to login a user and then
Need some regular expressions help. So far I have my code working to allow
Need some help... I have jasperserver 4.1 installed on my ubuntu. It runs via
Need some quick advice I am trying to access a object array but I
Need some help with Activerecord Querying in a has_many :through association. Model: Job class

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.