0
votes
5answers
21 views
Mass string replace in python?
Say I have a string that looks like this:
str = "The &yquick &cbrown &bfox &Yjumps over the &ulazy dog"
You'll notice a lot of locations in the string where there is an …
0
votes
4answers
65 views
split a string using find_if
Hi,
I found the following code in the book "Accelerated C++" (Chapter 6.1.1), but I can't compile it. The problem is with the find_if lines. I have the necessary includes (vector, string, algorithm, …
-1
votes
4answers
81 views
Python joining strings
I have run into a problem joining two strings in Python.
I have some code that is like this:
for line in sites:
site = line
for line in files:
url = site+line
That should …
0
votes
2answers
96 views
How to replace text in string in C#?
I have this particular piece of code, but its not working.
text = text.Replace("\xEF\xBF\xBD", "?");
Does any one knows how to replace the text "\xEF\xBF\xBD" to "?" in C# String.
0
votes
2answers
27 views
get word before a :- sign in a string with regex
I need to get the amount before a :- sign.
So the string would be: bla bla 120:-
And then store only 120 in a variable
0
votes
5answers
73 views
Map strings to numbers maintaining the lexicograhic ordering
I'm looking for an algorithm or function that is able to map a string to a number in such way, that the resulting values correspond the lexicographic ordering of strings. Example:
"book" -> 50000
…
0
votes
4answers
23 views
sql server string trim
I need to trim a field in SQL Server table, when i use a select statement.
The requirement is that this field populates the dropdownlist in .net page. The maximum length that the data needs to …
3
votes
7answers
94 views
Python string pattern recognition/compression
I can do basic regex alright, but this is slightly different, namely I don't know what the pattern is going to be.
For example, I have a list of similar strings:
lst = ['asometxt0moretxt', …
0
votes
6answers
55 views
Multiline String In Classic Asp
Hi guys,
is there any possiblity to get multiline string in classic asp (I think vbscript is the language)?
I want a multiline string like in python or groovy:
def str = """hello
I am a
multiline
…
2
votes
5answers
123 views
How do I know if a regexp has more than one possible match?
I am writing Java code that has to distinguish regular expressions with more than one possible match from regular expressions that have only one possible match.
For example:
"abc." can have several …
0
votes
6answers
70 views
find word before second comma with regex
I want to store the word before the second comma in a string.
So if the string looks like this: Hello, my name is David, bla bla.
I want to set a variable $test = David
0
votes
4answers
65 views
Check String whether it contains only Latin characters?
Greetings,
I am developing GWT application where user can enter his details in Japanese.
But the 'userid' and 'password' should only contain English characters(Latin Alphabet).
How to validate …
1
vote
3answers
66 views
Convert single-quoted string to double
I want to check whether the given string is single- or double-quoted. If it is single quote I want to convert it to be double quote, else it has to be same double quote.
0
votes
4answers
69 views
CR character in gets() function
The user types a string, possibly separated by tabs, spaces and "enters" (CRs).
I need to receive all of it; the problem is that gets() function stops the scan when the user presses the "Enter" key.
…
0
votes
3answers
33 views
How do I concatenate html as a string in VBA?
I'm a newbie at VBA and html and I'm getting very confused.
I'm trying to set a string variable to equal several concatenated html strings and control values. I can't figure out what I'm doing wrong.
…
