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

  • Home
  • SEARCH
  • 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 1025313
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T11:54:34+00:00 2026-05-16T11:54:34+00:00

I have a database of tables that I needed to do some comparison work

  • 0

I have a database of tables that I needed to do some comparison work on and sql server is limited to the means of doing string comparisons. I put all the data into lists and thought of using string.compare or string.contains but does not seem like it is working right. Perhaps someone has a better suggestion on how to do this. It is large amount of data and I need to be able to make some matches in order to avoid the manual checking of each string. Here is sample data and code;

string 1
adage.com via Drudge Report
Airdrie & Coatbridge Advertiser
Silicon
A NOVO SA

string 2
adage.com
Airdrie and Coatbridge Advertiser
Silicon.com
The A Novo

now these are typical examples that should match but I am not sure how to get this to work.

rough code implementation:

For i As Integer = 0 To list1.Count - 1
            For j As Integer = 0 To list2.Count - 1
                If list1.Item(i).Contains(list2.Item(j)) Then
                    outfile.WriteLine("found match")

                End If
            Next
        Next
  • 1 1 Answer
  • 3 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-05-16T11:54:35+00:00Added an answer on May 16, 2026 at 11:54 am

    If I understand your requirement, you want to match if either a is a substring of b, or vice versa. So don’t you need:

    If list1.Item(i).Contains(list2.Item(j)) OR list2.Item(j).Contains(list1.Item(i))
    

    The above will do a case sensitive comparison. If you want a case insensitive comparison, then you could do something like this:

    If list1.Item(i).ToLower().Contains(list2.Item(j).ToLower()) OR
        list2.Item(j).ToLower().Contains(list1.Item(i).ToLower())
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an SQL database with a set of tables that have Unique Id's.
I have a SQL DB that contains multiple relational tables. There are some fields
I have several database tables that just contain a single column and very few
I've 3 different database tables that have the same 5 fields but those does
I have a database two tables and a linking table that I need a
I have a large database with over 150 tables that I've recently been handed.
I have a relatively large database tables (just under a million rows) that has
Basically I have a database with two tables, that is, Updates table and Images
I have a Yahoo! Group that has its own Database tables for various reasons.
Background In a PostgreSQL 9.0 database, there are various tables that have many-to-many relationships.

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.