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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T22:39:28+00:00 2026-05-16T22:39:28+00:00

Is it possible to write a lambda expression that will iterate through array of

  • 0

Is it possible to write a lambda expression that will iterate through array of objects and replace all occurences of ‘X’, ‘Y’, ‘ ‘ and ‘Z’ in one of the properties?

E.g.

return query.Select(x => { x.SomePropertyName= x.SomePropertyName.Trim().Replace(' ', "_"); return x; }).ToList();

For some reason, a query above doesn’t replace a single character, when I need to replace multiple characters.

Thank you

  • 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-16T22:39:28+00:00Added an answer on May 16, 2026 at 10:39 pm

    When I want to replace one of a number of characters with one single other character, I often use a combination of string.Split and string.Join:

    char[] unwanted = new[] {'X', 'Y', 'Z'};
    query = query.Select(x =>
    {
        x.SomePropertyName = string.Join("_", x.SomePropertyName.Split(unwanted));
        return x;
    });
    

    This will replace any occurrence of 'X', 'Y' or 'Z' with '_'. You can combine this with the looping construct of your choice.

    As discussed in the comments, using Select does not really add any value in this case. A normal foreach loop would do the job, and would even produce more compact code:

    char[] unwanted = new[] {'X', 'Y', 'Z'};
    foreach(var x in query)
    {
        x.SomePropertyName = string.Join("_", x.SomePropertyName.Split(unwanted));
    };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible to write a program that will change the phone numbers a
I wonder if it's possible to write a function that returns a lambda function
Background: I am trying to write a shortest possible lambda expression to find the
I'm curious how to write this, if it's possible, as a lambda expression. For
Is it possible to write the folowing using lambda(C#) private static void GetRecordList(List<CustomerInfo> lstCustinfo)
Is it possible to write GLSL ES fragment shaders under iOS that generate multiple
Is it possible to write generic class with one constructor which explicitly defines type
I was wondering if i could possible write an app, that could be a
Is it possible to write a C++(0x) metafunction that determines whether a type is
Possible Duplicate: Write a recursive function that reverses the input Recently, I've been reading

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.