Search Results

0
votes

regular expression for finding parts of a string within another

The best way to do it with regular expressions is, IMO: A. Sort the characters in the large string (search space) Thus: turn "catdog" into "acdgot" B. Do the s …
7
votes

A regex problem I can’t figure out (negative lookbehind)

Assuming your regex engine supports (negative) lookbehind: /(?<!-)-myString/ Perl does, Javascript doesn't, for example. …
8
votes

Not allow zero in textbox.

The way you plan to do this, is very annoying for a user. You're guessing what a user wants to enter, and act upon your guess, but you can be so wrong. It also has holes, for example, a use …
1
vote

How do I merge/join mp3 files with c#

MP3 files consist out of "frames", that each represent a short snippet (I think around 25ms) of audio. So yes, you can just concatenate them without problem. …