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

The Archive Base Latest Questions

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

I need to truncate some data received from a URI:PARSE…it is full of html

  • 0

I need to truncate some data received from a URI:PARSE…it is full of html codes and data, The result at the end is what I need.

Here’s the string (abbreviated) ‘ junk“Result”>Q8:0;junk

What’s is the best way to truncate the extra stuff in the string so that I can split the data I need into variables.

Thanks in advance,
Philip
pabbott@cpak.com

  • 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-15T01:38:50+00:00Added an answer on June 15, 2026 at 1:38 am

    i would recommend to use Nokogiri to extract your value from Result span:

    require 'nokogiri'
    
    response = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">;
    <html xmlns="w3.org/1999/xhtml"><head><title>;
    </title></head><body>
    <form name="form1" method="post" action="tenHSServer.aspx?t=34&amp;f=DeviceValue&amp;d=R10" id="form1">
    <div>
    <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUKMTkzNDcxNzcwM2RkM4AHUDZdWZytDdspzLq7+FOXRfQ=" />
    </div>
    <span id="Result">R10:100;</span>
    </form></body>
    </html>'
    
    result = nil
    if doc = Nokogiri::HTML(response) rescue nil
      if span = doc.css('#Result')
        result = span.text
      end
    end
    
    puts result
    #=> R10:100;
    

    however if you can not / do not want to install Nokogiri, use this regexp instead:

    result = response.scan(/id=["|']Result["|']>([^<]*)<\//m).flatten.first
    puts result
    #=> R10:100;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We need to pull some tables from an Informix SE database, truncate tables on
I need to write some data from my program to an Excel spreadsheet. I've
I need to truncate a comma at the end of a string, sort of
I am write a small python script to gather some data from a database,
I need to retrieve some data stored as varchar in an SQL table to
I need to truncate the amount of decimal places of my double value for
I need a rewrite in how the modifier 'truncate' is called, because it is
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
I'm faced with needing access for reporting to some data that lives in Oracle

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.