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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T10:38:12+00:00 2026-06-12T10:38:12+00:00

I have html strings like these: <img src=mysrc width=128 height=92 border=0 alt=alt /><p><strong>… I’d

  • 0

I have html strings like these:

<img src="mysrc" width="128" height="92" border="0" alt="alt" /><p><strong>...

I’d like to extract mysrc. I don’t want to use an html parser as I’ll just have to deal with simple html strings…is there an efficient way to extract source field just with string/regular expressions? Or maybe with android default xml parser?

  • 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-12T10:38:14+00:00Added an answer on June 12, 2026 at 10:38 am

    regex you could try : "(?<=<img src=\")[^\"]*"

    example:

    @Test
        public void testX() {
            final String s = "<img src=\"mysrc\" width=\"128\" height=\"92\"...";
            final String regex = "(?<=<img src=\")[^\"]*";
            final Pattern p = Pattern.compile(regex);
            final Matcher m = p.matcher(s);
            while (m.find()) {
                System.out.println(m.group());
            }
    
        }
    

    will give you

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

Sidebar

Related Questions

I have this piece of HTML: <div class=embed> <iframe width=300 height=200 frameborder=0 allowfullscreen= src=http://www.youtube.com/embed/123456></iframe>
Suppose I have an html string like so : var string = '<div><img src=foo/bar
I have an xpath string like the following: /html/body/table/a/img /html/body/table/a[3]/img Sometimes there is [integer],
I have code like this: string uriString = @C:\Temp\test.html; Uri uri = new Uri(uriString);
I have a string contaning some html markup, like this: var html = <div>
I have a basic string with holds a html table. The table looks like
I have various HTML strings to cut to 100 characters (of the stripped content,
I have a some of html strings that my application generates. Each html 'snippet'
I have to isolate parts of strings in a html file. I thought I
I'm generating dynamic HTML inside Delphi. I have no problem displaying UTF-8 strings inside

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.