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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T01:16:48+00:00 2026-06-14T01:16:48+00:00

I have a variable that has all the data source of a web page.

  • 0

I have a variable that has all the data source of a web page. It’s a large string with lots of words, strings, special characters, etc.

I want to go through this variable and extract the ticket number. Which is after tickets/ and before .json. In the following case, my list would be only 1, which is the value 15.

https://company.zendesk.com/api/v2/tickets/15.json

This web page will have multiples of this link in between lots of text. In the following case, my list would have 2 items, the values 19 and 20.

https://company.zendesk.com/api/v2/tickets/19.json blahblahblajlkdfjfaiofjd3289239lkdj
2398283j;lkjfe89j2pefj2efljefkj
https://company.zendesk.com/api/v2/tickets/20.json blah blhahblbahlhkaldk

How would I go about extracting JUST the ticket numbers from these links in this huge file and put them into a list?

Would I use Regex? I’m not really sure how I’d approach this.

By the way, there is no format to this page. It’s not like it’s an XML doc or anything.

Thanks!

  • 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-14T01:16:49+00:00Added an answer on June 14, 2026 at 1:16 am

    Something like this should get you started work

            string pattern = @"https://company.zendesk.com/api/v2/tickets/\d+.json";
            Regex regex = new Regex(pattern);
            MatchCollection mc = regex.Matches("input string here");
    
            foreach(Match m in mc)
            {
                Console.Write(m.Value);
            }
    

    @“https://company.zendesk.com/api/v2/tickets/\d+.json”;

    take note of the bolded parts. the @ means that it’s a literal string, so you don’t have to double-escape your \. the \d is a stand-in for any digit. the + means the previous character occurs 1 or more times. * would mean that it occurs 0 or more times.

    here’s a reference on how you can futher customize the pattern http://msdn.microsoft.com/en-us/library/az24scfc.aspx

    To get just the ticket numbers, you can put the "\d+" in parenthesis
    https://company.zendesk.com/api/v2/tickets/(\d+).json"

    and then your match will have a property called Groups your ticket number will be one of those groups

                Console.Write(m.Groups[i].Value);
    

    At that point, you can filter out the full match group from the ticket number of groups using a number of heuristics including but limited to the string length, or you can use another regex.

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

Sidebar

Related Questions

I have a variable that has this string: <DIV><SPAN style=FONT-FAMILY: Tahoma; FONT-SIZE: 10pt>[If the
Let's suppose I have a variable called data. This data variable has all this
I have program that has a variable that should never change. However, somehow, it
Say I have an instance variable MyObject that has been allocated and initialized. Then
I have a Class that has a private variable with a public setter/getter function:
I have a class that has a vector member variable, which I fill up
I have a custom class that has as an instance variable of a coordinate:
I have a form that has 8 columns and a variable number of rows
I have a component that has a sub-component they both use a shared variable
If I have a view controller that has an NSOperationQueue as an instance variable,

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.