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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T11:24:58+00:00 2026-05-27T11:24:58+00:00

let dTuples = new Dictionary<int, string * string * int>() dTuples.Add(1, (A, OK, 1))

  • 0
let dTuples = new Dictionary<int, string * string * int>()
dTuples.Add(1, ("A", "OK", 1))
dTuples.Add(2, ("B", "NOK", 2))
dTuples.Add(3, ("C", "OK", 3))

I want to find the items from the dictionary where they have “OK” in the second element of the value part.
I also want to convert the result to an array of tuple without the key part of the dictionary.
For the above example, I need this:

let tuplesOK = [| ("A", "OK", 1); ("C", "OK", 3) |]

If you provide the code, please also add some explanation, so I can understand it better!
Thanks,
John

  • 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-05-27T11:24:58+00:00Added an answer on May 27, 2026 at 11:24 am

    The solution by Daniel clearly answers your question, but if you need to perform a lookup in the dictionary based on something else than the key, then you may want to consider using a different data structure, because there is no point in using the dictionary. Maybe you could just use a list:

    let data =
      [ ("A", "OK", 1)
        ("B", "NOK", 2)
        ("C", "OK", 3) ]
    

    And then perform lookup using Seq.filter just like in the solution by Daniel:

    data |> Seq.filter (fun (_, ok, _) -> ok = "OK")
         |> Seq.toArray
    

    Or if you need you’re going to perform the lookup often, you could group the values using the second element (OK/NOK flag) and then store that in a dictionary using the dict function:

    // build a dictionary with second element of the tuple as a key 
    let lookupOk = data |> Seq.groupBy (fun (_, ok, _) -> ok) |> dict
    
    // get a sequence of 'OK' values
    lookupOk.["OK"]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Let's say I have a drive such as C:\ , and I want to
let's say I have the following string: string s = A B C D
Let's say I have the string: hello world; some random text; foo; How could
Let's suppose I have this piece of code. foreach(string value in myList) { string
Let's say I have a javascript array with a bunch of elements (anywhere from
Let's say I want to see how copy is implemented in the Dictionary class.
let's say that I have string: s = Tuple: and Tuple (stored in a
Let's say i have input 22365.2588 in my Edit Text. I want to change
Let's say I'm building a data access layer for an application. Typically I have
Let's say you have a class called Customer, which contains the following fields: UserName

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.