-1
votes
0answers
48 views

Trimming line function from a string

I am running a bunch of commands using a client called SecureCRT. The text being outputted is being written to a file that i then later process. When selecting the data, there appears to be leading / ...
0
votes
2answers
35 views

How do I trim DB field spaces querying DB with Entity Framework?

In DB i have a field PhoneNumber = '123 456 789' Query returns null: return context.Clients.FirstOrDefault(c => с.PhoneNumber.Trim() == "123456789") Is it possible to trim white spaces using ...
1
vote
2answers
68 views

How to remove special chars EXACTLY in .net 2.0, no linq is provided

I must to use .NET 2.0 and I have no Linq support here, also... I've tried to trim chars using Remove() and Trim() functions like: string guid = Guid.NewGuid().ToString(); string result = ...
0
votes
1answer
148 views

c# .net Request.Param

i think i know the answer to this question, but it never hurts to ask... our .net application needs to store things like names in the database. we just discovered some fields with leading spaces. 1) ...
1
vote
2answers
999 views

How to trim few bytes of a byte array?

I have a long byte array. I need to eliminate the initial 16 bytes. Is there a shortcut do it?
0
votes
1answer
282 views

Can I trim strings when I manage them to a DropDownList by DataSource?

I have this code : myObjects ps = new myObjects(); myDD.DataSource = ps; myDD.DataTextField = "Title"; myDD.DataValueField = "ItemID"; myDD.DataBind(); that add a Text/Value pair values to a ...
1
vote
1answer
65 views

Trim functions that uses an array of strings instead of array of char

This is similar to a recent question I asked but now I'm curious about a true replacement for the string trim functions which would remove "any" occurance of my string from the end(s). Further, to ...
5
votes
4answers
528 views

Why does Environment.CommandLine.Trim('"') not remove the trailing quote?

The following C# code: using System; namespace TrimTest { class Program { static void Main(string[] args) { Console.WriteLine(Environment.CommandLine); ...
2
votes
2answers
1k views

Android .NET Trim function in Java?

In an Android app, I am looking for the functionality of the .NET string function [Trim('aaa')] which will trim off the text "aaa" off a string. I don't think this is natively available in Java and I ...
5
votes
4answers
634 views

Iterate through Object's own Strings & Trim each

I have multiple large objects which each have about 60 strings. I have to trim all those strings, and I'd like to do so without having to go this.mystring = this.mystring.Trim(). Instead, I'm looking ...
20
votes
3answers
12k views

How can I split and trim a string into parts all on one line?

I want to split this line: string line = "First Name ; string ; firstName"; into an array of their trimmed versions: "First Name" "string" "firstName" How can I do this all on one line? The ...
3
votes
17answers
6k views

How can I Trim the leading comma in my string

I have a string that is like below. ,liger, unicorn, snipe in other languages I'm familiar with I can just do a string.trim(",") but how can I do that in c#? Thanks. There's been a lot of back ...