2
votes
2answers
68 views

How would one trim all non-alphanumeric and numeric characters from the beginning and end of a string?

EDIT: I changed the title to reflect specifically what it is I'm trying to do. Is there a way to retrieve all alphanumeric (or preferably, just the alphabet) characters for the current culture in ...
1
vote
3answers
105 views

How do i escape " in verbatim string?

I am a bit new to c#, and i am stuck at this point, I have a regular string, where i made use of \ to escape ", escape here means that to escape the compilers interpretation of ", and get " printed ...
0
votes
1answer
46 views

Replacing decimals with a space at the end of a fixed-with string

Alright, so I have a working program that makes golden ratio rectangles based on a length or width given. This probably isn't a good practice, but I wrote a String.Slice(start, end) in the ...
0
votes
1answer
143 views

Why isn't there a String.Space(“ ”) in .Net? [closed]

In .Net why isn't there a String.Blank. Everywhere we have to write " ". I'm just wondering if anyone knows what the reasoning was behind that decision.
2
votes
4answers
64 views

Convert 12-hour time format to 24 hour integer?

In my app I have a drop-down box of strings that shows possible hours in 12-hour time for the user to select. The possible values are: 9am 10am 11am 12pm 1pm 2pm 3pm 4pm 5pm What code will convert ...
1
vote
2answers
27 views

performance boost by seemingly unnecessary string initialization?

At the moment I maintain a quirky codebase, and came across the following same pattern more than 100 times: string NotMySqlQuery = ""; //why initialize the string with "", only to overwrite it on the ...
1
vote
3answers
50 views

How do I split a string content into an array of strings in Powershell?

I have a string that has emails separated by with semi-colon $address = "foo@bar.com; boo@bar.com; zoo@bar.com" How can I split this into an array of strings that would result as: ...
1
vote
3answers
80 views

Searching a string continuously for a separator?

I'm writing my first program, and I'm finding it runs slowly. It is used to convert one text format to another. In doing so, I often have to search for a certain string and then parse the text from ...
3
votes
3answers
57 views

How to set a multiline string variable in vbnet

I need to store a multiline string inside a variable: dim str as string = " some words some words some words " How?
1
vote
1answer
30 views

Find and copy all occurrences of a substring from point a to point b to a list

I'll try to write this in pseudo-code but I am struggling to write the vb.net code myself, as I am rather new to the language. I would like to find point a in a string and copy all characters until ...
-3
votes
2answers
75 views

convert string to hex-string in C#

I have a string like "sample". I want to get a string of it in hex format; like this: "796173767265" please give C# syntax.
1
vote
2answers
38 views

Print all the possible combinations of “X” amount of characters with “X” string length (Brute Force)

I'm trying to write a word combination generator, I mean to print all the possible combinations of "X" amount of characters with "X" string length, First of all I need to say I saw a question in ...
2
votes
1answer
69 views

System.String.Split(null) doesn't remove whitespace (C#)

I know that System.String.Split(null) should return me a string array with whitespace removed. I've read this post and this MSDN doc, which does not agree with what I'm experiencing. Here's my code: ...
1
vote
1answer
42 views

String length difference in VB.net 3.5 and 4

I have just updated an in-house app from .Net 3.5 to 4. and I'm having some issues with string encoding. I have a string I am adding to the registry. It is encrypted (as a byte array), then converted ...
-2
votes
2answers
53 views

string similarity and pattern matching [closed]

Say I have strings like these Sam is Boy Joseph is Boy Jasmine is Girl Annie is Girl Chris is Boy I have a quick and murky way of preparing a C# Dictionary like this..! input.ForEach(i => { ...
9
votes
2answers
281 views

Fast and memory efficient ASCII string class for .NET

This might have been asked before, but I can't find any such posts. Is there a class to work with ASCII Strings? The benefits are numerous: Comparison should be faster since its just byte-for-byte ...
1
vote
2answers
42 views

compare two phonemes/strings for similarity [duplicate]

I have a string which is "The White Horse is hungry" Now, I need to match this with the possible pronunciations. Following are examples. (Think these as phonemes, OK I mean the way the user can ...
-3
votes
2answers
104 views

How to compare 2 strings and find the difference in percentage? [closed]

I am new to C#. I have 2 strings, they are representing characters from International Phonetic Alphabet. String 1 - ðə ɻɛd fɑks ɪz hʌŋgɻi String 2 - ðæt ɪt foks ɪn ðʌ sʌn ɻe͡i Now I need to ...
1
vote
5answers
202 views

Convert String To Int in LINQ

I have a LINQ query that queries a DataTable. In the DataTable, the field is a string and I need to compare that to an integer, basically: if ((electrical >= 100 && electrical <= 135) ...
4
votes
1answer
169 views

Performance of sprintf vs String.Format [duplicate]

I was comparing the performance of sprintf usages and am a little troubled by what I saw. I tested the following 4 methods, passing an instance of ClassWithToString in to each (except for PrintInt, ...
0
votes
1answer
74 views

Match more than one occurence in a string

I'm trying to match a tag values (music kind styles) of an xml. This are some examples: One music genre: (Pop) (rel="tag">Pop) <span class="genres"><a ...
0
votes
1answer
23 views

Set ListBox selecteditems by the ItemText?

I have a Listbox with 100-200 default values and the multiselect-simple mode is enabled. I save the selected text items in a List of string: Private Sub ListBox_Styles_SelectedIndexChanged(sender As ...
0
votes
0answers
30 views

Interoperability managed <-> unmanaged , retun CString value of a function issue

I have written an wrapper for an custom nativ C++ DLL . The DLL is used in a .NET app. I have used P/Invoke to call functions from DLL. In my development I am limited at using visual studio 2003 , ...
15
votes
4answers
1k views

Can someone break this lambda expression down for me?

I'm looking at the solution from Token Replacement and Identification: string result = Regex.Replace( text, @"\[%RC:(\d+)%\]", match => dict[int.Parse(match.Groups[1].Value)]); And ...
0
votes
1answer
45 views

RegEx is not doing what I want

I want to retreive a part of a string, my question is if I can get the correct string without touching the matched string (substring or splitting), I know is easy to do a split/substring but I want to ...
3
votes
2answers
90 views

.Net C# String.Join how to output “null” instead of empty string if element value is null?

According to the MSDN docs for String.Join "If any element in value is null, an empty string is used instead." The code I have pulls data out of a DataTable rotationValues = ...
0
votes
5answers
65 views

Move part of string to another string

Maybe I don't have the right keywords but I can't seem to find how to do it. Let's say I have these two string : firstString = "I am a string"; secondString = "I am a long"; Is there a method ...
0
votes
3answers
86 views

Need help on a simple string sort method from a string array

seriously need some guideline on string sorting methodology. Perhaps, if able to provide some sample code would be a great help. This is not a homework. I would need this sorting method for ...
-2
votes
2answers
52 views

Is it possible to get a reference to MyList<Object> if the listname is a string “myList”

I have some lists of the type ObservableCollection<SampleObject> They all end with a letter of the alphabet: lista, listb, listc... Now i want to make a loop which runs through the alphabet and ...
1
vote
6answers
75 views

String substring or reg expr

I have got a problem with getting three params from console. For example the user enter to the console so line: '/s:http://asdasd.asd /e:device /f:create' string params = Console.ReadLine(); // ...
0
votes
5answers
78 views

how to extract a whole sentence by a single word match in a string?

So I have got a whole string (about 10k chars) and then searching for a word(or many words) in that string. With regex(word).Matches(scrappedstring). But how to do so to extract the whole sentence, ...
-2
votes
2answers
98 views

How do I print a string with a printer?

I'm writing an application that need to print some information that would came from a DataGridView, I already have the string I'd like to print, I just don't know how. I found some stuff on the web ...
0
votes
1answer
39 views

.NET verify format string for a dynamic type

I would appreciate some aid in getting the last piece solved please. What I want is to read from configuration the TYPE, VALUE and FORMATSTRING to be applied on the VALUE. In Code, what I am trying ...
0
votes
0answers
102 views

How to convert escaped http request data to a normal string

I am using .net 3.5 to write a simple REST web service. This will use JSON to pass data to and from it. I have a simple test HTML page I am using to send POST data to the service. When I receive the ...
0
votes
1answer
49 views

Marshal.PtrToStringUni(s) returns class name instead of message

Im currently trying to get my kernel filter to communicate with my c# application. Kernel app sends a UNICODE_STRING, in my structure, with path to a file. All other variables seem fine and the buffer ...
2
votes
3answers
101 views

How to format a number into a fixed string size, in .NET?

I'm displaying GUID's and Numbers in a simple text output report. How can i keep the length of each string 'fixed'. eg. Currently, this is what is happening. (BAD). [WaWorkerHost.exe] ...
1
vote
3answers
156 views

StringBuilder.AppendLine() does not make a new line

I am generating an email when an error occurs. I am using StringBuilder.AppendLine() and StringBuilder.AppendLine(String) to build up the body of the email, however the body of my email appears as one ...
0
votes
1answer
86 views

Finding where in a string a substring is with VB or C#

Basically what I'm doing is reading in a large input of data to put into a structure which then goes into a generic collection. What I am needing to do is search that large amount of input for certain ...
4
votes
1answer
79 views

String.Join method that ignores empty strings?

The VB.NET method String.Join(separator, stringArray) is similar to PHP's implode, but any null elements in the array are replaced with an empty string, so thatc: Dim myArray() as String = { "a", ...
2
votes
1answer
91 views

ASP.Net's String.Replace behaves differently if run on Windows 7 workstation than on Windows 2008 R2 server

I have an ASP.Net project using .Net framework 4.0. The following line works fine if my project is published to my Windows 7 workstation: strTemplate = strTemplate.Replace("<span ...
2
votes
2answers
59 views

How can I get this string replacement in hebrew to work?

I would like to replace this placeholders in a hebrew string. But unfortunately the string replacement does not work. It looks like the placeholder string cannot be found at all within the hebrew ...
0
votes
2answers
40 views

C# Date Conversion From Euro Time To en-US Time Needed For Date Calculations

I have a date that is entered through the system (from a database) as dd/mm/yy I need to programmatically convert the date to en-US format to mm/dd/yyyy so that I can do some date calculations within ...
-6
votes
2answers
89 views

replace double quote with double double quote [closed]

How can I perform this? Current String: string json = @"[{"data":{"JobID":"1",,"Amount":"6500","Description":"a"}}]"; Goal: string json = ...
1
vote
2answers
167 views

String Pattern Matching using basic String Operations

I have a method that allows the user to specify a remote directory and a searchPattern with with to search files in the remote directory. Since I use third party libraries when retrieving the names of ...
1
vote
1answer
43 views

How to Join multiline strings from left to right

I have an array with 3 entries. First entry of the array is a multiline string: "My dog you " Second entry too: " dont like that " And hird entry too: " ... ...
6
votes
5answers
194 views

Multiline string variable

In .Net (C# and VB.NET) If i have a multiline text like this: __ __ _ \ \ / / | | \ V /___ _ _ _ __ | | ___ __ ...
0
votes
4answers
117 views

How to implement string with 1 byte char (and save memory)

How to implement a single byte based string? Application uses a large list of words. Words come from SQL and is varchar (single byte). Each word also has in Int32 ID. Download the words to: ...
0
votes
1answer
52 views

what is the running time of Substring in C#?

So I'm trying to parse strings being read over an RS-232 serial port and the Substring function is the culprit. Is it O(N) run-time? Is there a faster way to chop up the string into pieces which I ...
0
votes
1answer
50 views

How to Reduce the size of a speccific format string?

I have designed a 2 Pass Assembler for my project. The output is in Hexadecimal form i.e. 15 is 0F. I am working with ComPort and to send "0F" over the line it should be sent as String. But the ...
50
votes
2answers
2k views

How can I perform a culture-sensitive “starts-with” operation from the middle of a string?

I have a requirement which is relatively obscure, but it feels like it should be possible using the BCL. For context, I'm parsing a date/time string in Noda Time. I maintain a logical cursor for my ...

1 2 3 4 5 27