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

  • Home
  • SEARCH
  • 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 7805661
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T02:17:30+00:00 2026-06-02T02:17:30+00:00

I hope its okay I ask this, I searched around stackoverflow and found similair

  • 0

I hope its okay I ask this, I searched around stackoverflow and found similair questions but no solutions worked for me.

I have HTML like this:
<h1>Beatles: A Hard Days Night</h1> now I would like a regex to match everything AFTER the colon. So A Hard Days Night in this case.

This is what I tried:

$pattern = "/<h1>\:(.*)<\/h1>/";

But this just outputs an empty array.

  • 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-02T02:17:31+00:00Added an answer on June 2, 2026 at 2:17 am

    The following regex should match that:

    <h1>[^:]+:\s+([^<]+)
    

    PowerShell test:

    PS> '<h1>Beatles: A Hard Days Night</h1>' -match '<h1>[^:]+:\s+([^<]+)'; $Matches
    True
    
    Name                           Value
    ----                           -----
    1                              A Hard Days Night
    0                              <h1>Beatles: A Hard Days Night
    

    A little explanation:

    <h1>    # match literal <h1>
    [^:]+   # match everything *before* the colon (which in this case
            # shouldn't include a colon itself; if it does, then use .*)
    :       # Literal colon
    \s+     # Arbitrary amount of whitespace
    ([^<]+) # Put everything up to the next < into a capturing group.
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I hope this is okay to ask here as its more a request for
Okay, per suggestions on clarifying the intent I have restated the question. Hope this
I have a gerneral question on php. Hope its ok to ask here. How
Okay, I have literally searched all over the web, but I didn't find what
Well, I have a simple question, at least I hope its simple. I was
Maybe its a very dumb question but I hope you can give me some
This has been driving me nuts. I hope it's not been asked before but
Hope I'm asking this correctly: I have a project Projects.Client I have my class
Hope to get solution to this problem. I have been stuck on it since
Okay, so I've got this TableLayout, and its full of data - with all

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.