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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T02:51:57+00:00 2026-05-20T02:51:57+00:00

Is there a nice linqy way of splitting a FormCollection into a Dictionary<string,string> that

  • 0

Is there a nice linqy way of splitting a FormCollection into a Dictionary<string,string> that contains only those keys that start with a certain string?

(This question is basically the same as this-> but for C#/FormCollection instead of python Slicing a dictionary by keys that start with a certain string)

Here’s what I came up with to get around the problem:

public ActionResult Save(FormCollection formCollection) {
  var appSettings = new Dictionary<string, string>();
  var appKeys = formCollection.AllKeys.Where(k => k.StartsWith("AppSettings."));
  foreach (var key in appKeys)
  {
      appSettings[key] = formCollection[key];
  }
...

Edit: The problem with this code, is that I have to do it multiple times for different StartsWith strings, and will therefore need to create a ‘utility’ method to do the above.
It would be nice if it could read in one line like:

formCollection.Where(k=>k.Key.StartsWith("AppSettings.");

Background (not necessary to solve the problem): The context is asp.net mvc, and of a form with a dynamic dictionary of fields.

It’s also similar to this question – Return FormCollection items with Prefix – but not quite the same.

And having read this answer How to build C# object from a FormCollection with complex keys – I started to wonder whether I’d be better off not even using form post, but sending JSON instead.

  • 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-20T02:51:58+00:00Added an answer on May 20, 2026 at 2:51 am

    If you’re looking for a “nice” way of taking an existing dictionary, producing a new dictionary with copies of keys+values, for a subset of the keys, some LINQ code will do this nicely:

    var appSettings = formCollection.AllKeys
        .Where(k => k.StartsWith("AppSettings."))
        .ToDictionary(k => k, k => formCollection[k]);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a nice way to split a collection into n parts with LINQ?
Is there a nice way in the WinAPI to get a path relative to
Is there a nice way in Ext to move elements in DOM? I want
I want to swap both references, is there a nice way make such a
I got some binary files containing integers. Is there some nice Unix command, that
There's a nice plugin for Frog CMS that lets you just type in yourpicture.120x120.jpg
Is there a quick and nice way using linq?
Trying to work out if there's a nice way of doing this, preferably in
Is there a nice way to convert the timestamp you get from twitter (shown
There are nice SO question and answers about this issue, but these options didn't

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.