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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T03:50:25+00:00 2026-05-23T03:50:25+00:00

I need a regular expression so that if I search for > greater than.

  • 0

I need a regular expression so that if I search for “>” greater than.

for example

for this string I will get true – “if x> 2”

and for this string I will get false “<template>“

I have tried this – [^<][a-zA-Z0-9_]+[a-zA-Z0-9_ ]*>
as the regular expression
but the problem is that it finds a substring that match
for example in <template> it finds template> and return true.

thanks.

EDIT:

I am using this regular expression [^<a-zA-Z0-9_][a-zA-Z0-9_]+[ ]*> tried it over the entire firefox 1.0 source code and it seem to be working fine.

  • 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-23T03:50:25+00:00Added an answer on May 23, 2026 at 3:50 am

    It sounds like you want to match lines that contain > but not <. This pattern will do that:

    /^(?=.*>)[^<]+$/
    

    However, I’m curious why you want to do this. It sounds suspiciously like you’re trying to parse HTML with regular expressions, which is usually A Bad Idea.

    EDIT:

    It’s clearer now what you’re trying to do, but you should be aware that this pushes the limits of what regular expressions are capable of. They can’t really tell the difference between a template declaration and text with angle brackets in it, but if you know your template declarations all match a very specific pattern, you can do a pretty good job of catching them.

    If all your template declarations follow the <[0-9]+template> pattern, you can do this:

    /^.*(?<!<\d+template)>.*$/
    

    If your templates don’t follow such a strict convention, you need a true C++ parser for this. It will be basically impossible for regex to tell the difference between a template declaration and this:

    a=b<c>d;
    

    …which is valid code in C++ (translating, I believe, to a = (b < c) > d;).

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

Sidebar

Related Questions

I need a regular expression that will match any string containing at most 2
I need a regular expression that will match this pattern (case doesn't matter): 066B-E77B-CE41-4279
I need a regular expression that will match on all terms in a set
I need a regular expression that will match the file name of a ResourceBundle
I need to perform a regular expression search for a string x in another
I need to come up with a regular expression that validates a string with
I need to write a regular expression that finds javascript files that match <anypath><slash>js<slash><anything>.js
In my Python application, I need to write a regular expression that matches a
i need a Regular Expression to convert a a string to a link.i wrote
I need a Perl regular expression to match a string. I'm assuming only double-quoted

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.