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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T09:41:27+00:00 2026-06-17T09:41:27+00:00

Given the following two strings: Dim str1() As String = {123, 456, 789, 0}

  • 0

Given the following two strings:

Dim str1() As String = {"123", "456", "789", "0"}
Dim str2() As String = {"123", "456", "1"}

How do I perform a full outer join of str1 and str2 and end up having a structure like this:

{Nothing, "1"}
{"0", Nothing}
{"123", "123"}
{"456", "456"}
{"789", Nothing}

Based on several discussions on SO and other websites, I tried using LINQ:

Dim v = From a In str1 Join b In str2 On a Equals b Group By a Into g = Group
        From o In g.DefaultIfEmpty()

But it does not produce the desired result, which is exactly the same as this (regular INNER JOIN):

Dim v = From a In str1 Join b In str2 On a Equals b

The last example I’ve been looking at is here (C#).

And here is Another article, but it seems too complicated to be the shortest possible solution (I’ve seen much more simple C# examples and hope VB can be as efficient).

Why this question is useful

For example, one can have a file structure, where file path is a key. By doing full outer join of the keys, you can compare folders, find which files are missing on which side and show difference to the user. Any kind of synchronization task could use this approach.

  • 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-17T09:41:28+00:00Added an answer on June 17, 2026 at 9:41 am

    I guess this is not the solution you desire, however it seems to fullfil the task:

    string[] a1 = { "123", "456", "1" };
    string[] a2 = { "123", "456", "789", "0" };
    
    var intersection = a1.Intersect(a2); //get the intersection
    var exceptions1 = a1.Except(a2);     //get items from a1, that are not in a2
    var exceptions2 = a2.Except(a1);     //get items from a2, that are not in a1
    
    var result = new List<Tuple<string, string>>(); //the result set
    result.AddRange(intersection.Select(s => new Tuple<string, string>(s, s)));
    result.AddRange(exceptions1.Select(s => new Tuple<string, string>(s, null)));
    result.AddRange(exceptions2.Select(s => new Tuple<string, string>(null, s)));
    
    foreach (var t in result)
    {
        Console.WriteLine((t.Item1 ?? "null") + "\t" + (t.Item2 ?? "null"));
    }
    

    The output is:

    123     123
    456     456
    1       null
    null    789
    null    0
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Given the following strings 7;#User One 7;#User Two;#9;#User Two 7;#User Two;#9;#User Two;#123;#User Three I
Given the following string: var str = one,two,three; If I split the string on
I have the following two strings: $str='http://website.com/abc/?var=abc'; $str='http://website.com/abc/?xvar=123&var=xyz'; I would like to change $str
The following two functions behave differently when given an empty string: guardMatch l@(x:xs) |
Given the following two defined routes: routes.MapRoute(name: CityCategoryPage, url: {city}-{state}/{categoryName}/__c/, defaults: new { controller
Given the following two constructor signatures, should it be possible to construct a Couple
Given the following two ways of defining a class method in Ruby: class Foo
Given the following two objects: function newDoodle() { var Doodle = { /* Variables
Problem Given the following two tables, I'd like to select all Ids for Posts
Given the following: select * from a; select * from b; Are these two

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.