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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T09:35:03+00:00 2026-06-01T09:35:03+00:00

Say the string is something like bla bla bla bla (cat) bladfdskdfd dsgdsdksf (dog)

  • 0

Say the string is something like

bla bla bla bla (cat) bladfdskdfd dsgdsdksf (dog)
dfdshfdskdskfsdfkhsdf sdkfhdsfkdf (kathy) fdsfhdskfhdsfkd (doggy)

I want a generic.list (of string) containing

cat

dog

kathy

doggy

How to do that with regular expression in vb.net

Later I want to do something more complicated like getting all strings between “url”:” and “, from this strings

google.search.WebSearch.RawCompletion(‘1’,
{“results”:[{“GsearchResultClass”:”GwebSearch”,”unescapedUrl”:”https://eproc.pu.go.id/publik/eproc2011/semieprocplus/info_lelangprogress.asp?tid\u003d12\u0026id\u003d%7BC0B5ED00-F369-4700-B93A-B0677B63D9EA%7D\u0026u\u003d7\u0026t\u003d3\u0026d\u003d1″,”url”:”https://eproc.pu.go.id/publik/eproc2011/semieprocplus/info_lelangprogress.asp%3Ftid%3D12%26id%3D%257BC0B5ED00-F369-4700-B93A-B0677B63D9EA%257D%26u%3D7%26t%3D3%26d%3D1″,”visibleUrl”:”eproc.pu.go.id”,”cacheUrl”:””,”title”:”Informasi
Proyek”,”titleNoFormatting”:”Informasi Proyek”,”content”:”Jl. batu
\u003cb\u003eKucing\u003c/b\u003e Gg. Tuah No.4 Tanjungpinang. NPWP :
152742110214000. No. Agency, : -. Tgl. Agency, : -. Nilai, : 90.76. Waktu, : 270 Hari. Nilai kontrak, :
Rp.”},{“GsearchResultClass”:”GwebSearch”,”unescapedUrl”:”https://eproc.pu.go.id/publik/dinaspu/kegiatan/info_paket.asp?id\u003d%7B4BD47F74-233B-4D49-BB60-4229023668C6%7D”,”url”:”https://eproc.pu.go.id/publik/dinaspu/kegiatan/info_paket.asp%3Fid%3D%257B4BD47F74-233B-4D49-BB60-4229023668C6%257D”,”visibleUrl”:”eproc.pu.go.id”,”cacheUrl”:””,”title”:”Informasi
Proyek”,”titleNoFormatting”:”Informasi Proyek”,”content”:”9 Apr 2010
\u003cb\u003e…\u003c/b\u003e Sub Kegiatan, : PEMBANGUNAN JALAN.
Paket, : Peningkatan jalan s.d hotmix Jl .
\u003cb\u003eKucing\u003c/b\u003e Kel.Purwosari. Rupiah Murni, :
1449000000
\u003cb\u003e…\u003c/b\u003e”}],”cursor”:{“resultCount”:”10″,”pages”:[{“start”:”0″,”label”:1},{“start”:”4″,”label”:2},{“start”:”8″,”label”:3}],”estimatedResultCount”:”10″,”currentPageIndex”:2,”moreResultsUrl”:”http://www.google.com/search?oe\u003dutf8\u0026ie\u003dutf8\u0026source\u003duds\u0026start\u003d12\u0026hl\u003den\u0026q\u003d+kucing+site:eproc.pu.go.id”,”searchResultTime”:”0.05″}},
200, null, 200)

  • 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-01T09:35:04+00:00Added an answer on June 1, 2026 at 9:35 am

    If you want to extract values from string and generate generic list in vb.net you can try it

    Private Function Fetch_Items(Text As String) As List(Of Generic_List)
    Dim pattern As String = "\((?<value>(.)*?\))"
    Dim _lst As New List(Of Generic_List)()
    Dim VDMatch As System.Text.RegularExpressions.Match = System.Text.RegularExpressions.Regex.Match(Text, pattern)
    While VDMatch.Success
        _lst.Add(VDMatch.Groups("value").Value)
        VDMatch = VDMatch.NextMatch()
    End While
    
    Return _lst
    End Function
    

    This function will extract all strings containing within ( ) and generate generic list.

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

Sidebar

Related Questions

Say I've got a class where the sole data member is something like std::string
So say I have a string like so of a path $path = '/path/to/../../up/something.txt';
If you have an instance of a Collection, say something like: Collection<String> addresses =
let's say we have something like this public class Person { public string Name
Lets say I have string like this: String q = foo (one) bla (two)
How do you say something like this? static const string message = This is
Say i have something like: [DataContract(Namespace=http://bla.bla)] public class MyClass { [DataMember] public long ResponseCode
Let's say I have something like this: LinkedHashMap <String, ArrayList<String>> h keyOne has stringOne
I'm looking for something like this: Let's say we have a string.. $chk=pie; And
Let's say my string like: $string = 'lorem, ipsum, dolor, sit, amet, '; or

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.