0
votes
2answers
37 views
Need help with RegEx for ranges
I want to be able to use a RegEx to parse out ranges like a Windows Print dialog (such as 1-50,100-110,111,112). The following is my current code and I am not clear on how to parse …
1
vote
4answers
38 views
efficiency of SQL ‘LIKE’ statement with large number of clauses
I need to extract information from a text field which can contain one of many values. The SQL looks like:
SELECT fieldname
FROM table
WHERE bigtextfield LIKE '%val1%'
OR bigtex …
4
votes
9answers
317 views
Fast algorithm for searching for substrings in a string
I'd like an efficient algorithm (or library) that I can use in Java to search for substrings in a string.
What I would like to do is:
Given an input string - INSTR:
"BCDEFGH …
3
votes
12answers
483 views
Why do you prefer char* instead of string, in C++?
I am a C programmer,now trying to write c++ code.I heard string in C++ was better than char* in terms of security, performance, etc,but sometimes it seems that char * is better cho …
0
votes
6answers
152 views
How can I construct this string in a nicer fasion?
I have a tool with a configurable delay (Timespan), and I want to set the text of a label depending on the value. Here is my code as it stands:
StringBuilder time = new Strin …
0
votes
2answers
34 views
jquery - check if string begins with something?
I know that I can do like ^= to see if an id starts with something, and I tried using that for this, but it didn't work... Basically, I'm retrieving the url and I want to set a cl …
2
votes
9answers
145 views
How to check if String value is Boolean type in java?
Hi,
Did a little search on this but couldn't find anything usefull.
Point being that if String value is either "true" or "false" the return value should be true. In every other v …
0
votes
1answer
24 views
Turn a string into a regexp that matches the plain string, in DrScheme
I want to split a string based on a non-regular expression. My input is a plain string. So, for example, given the input "hello.*there" and ".*", I want the result ("hello" "there" …
0
votes
1answer
19 views
string-split in DrScheme
How do I do equivalent of python's str.split in DrScheme? SRFI-13 doesn't seem to have it provided.
0
votes
3answers
65 views
How do we create such a regular expression to extract data?
<br>Aggie<br><br>John<br><p>Hello world</p><br>Mary<br><br><b>Peter</b><br>
I'd like to create a regexp th …
1
vote
4answers
65 views
C# Compile-Time Concatenation For String Constants
Does C# do any compile-time optimization for constant string concatenation? If so, how must my code by written to take advantage of this?
Example: How do these compare at run tim …
0
votes
3answers
59 views
C++ - string.compare issues when output to text file is different to console output?
I'm trying to find out if two strings I have are the same, for the purpose of unit testing. The first is a predefined string, hard-coded into the program. The second is a read in f …
1
vote
4answers
60 views
Angle brackets in php
I want to store angle brackets in a string in PHP because i want to eventually use mail() to send an HTML email out.
The following is the code that doesn't seem to work.
while(.. …
4
votes
5answers
183 views
string program for ice cream shop (Edited again)
With the assistance of others, I have redone the code from scratch due to them pointing out numerous errors and things that wouldn't work. Thus I have changed the code massively.
…
0
votes
4answers
54 views
How can ruby do this task (Case-insensitive string search & replace in Ruby)?
I have some problem with replace string in Ruby.
My Original string : What the human does is not like what animal does.
I want to replace to: ==What== the human does is not like …
