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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T03:42:57+00:00 2026-06-13T03:42:57+00:00

How to grep data item from this html string a <- <div class=\tst-10\>100%</div> so

  • 0

How to grep data item from this html string

a <- "<div class=\"tst-10\">100%</div>"

so that the result is 100%? The main idea is to get data between > <.

  • 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-13T03:42:58+00:00Added an answer on June 13, 2026 at 3:42 am

    I would use gsub() in this case:

    gsub("(<.*>)(.*)(<.*>)", "\\2", a)
    [1] "100%"
    

    Basically, this breaks the string up into three parts, each separated by regular brackets ( and ). We can then use these as backreferences. The contents matched by the first set of backreferences can be referred to as \1 (use a double slash to escape the special character), those matched in the second, \2 and so on.

    So, essentially, we’re saying parse this string, figure out what matches my conditions, and return only the second backreference.

    Piece by piece:

    • <.*> says to look for a “<” followed by any number of any characters “.*” up until you get to a “>”
    • .* means to match any number of characters (up until the next condition)

    Keeping this in mind, you could actually probably use gsub("(.*>)(.*)(<.*)", "\\2", a) and get the same result.

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

Sidebar

Related Questions

I have a line similar to this grep -oP data-context-item-title=.*.data-context-item-id web.html | cut -d''
I have output from grep I'm trying to clean up that looks like: <words>Http://www.path.com/words</words>
How can I use Microsoft findstr to grep an item from a single line?
I want to grab data from this kind of log. Nov 12 13:46:14 Home
I'd like Popen to execute: grep -i --line-buffered grave data/*.txt When run from the
I have some data from an Nmap Scan. It looks like this. Nmap scan
I have the following data that looks like this for example: 34 foo 34
Assume I have a function that reads data from a MySQL table, manipulates it
I'm pulling JSON data fromlocalstorage and using grep to filter out the items needed
I want to grep files that contain text "wp_" but do not contain text

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.