0
votes
2answers
47 views
How can I insert a character after every n characters in javascript?
I have a string: "The quick brown fox jumps over the lazy dogs."
I want to use javascript (possibly with jQuery) to insert a character every n characters. For example I want to c …
0
votes
2answers
25 views
str_ireplace() not accutally removing the ‘needles’
I'm using str_ireplace() to remove instances of strings in an array, and I'm returning the number of counted occurances, but it's not actually performing the replace.
//replace oc …
0
votes
2answers
38 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 …
2
votes
2answers
39 views
boost to_upper function of string_algo doesn’t take into account the locale
I have a problem with the functions in the string_algo package.
Consider this piece of code:
#include <boost/algorithm/string.hpp>
int main() {
try{
string s = "me …
0
votes
5answers
132 views
C++ String manipulation - if stament
I have the following code that works correctly. However after I add an else statement anything always evaluates to else
wgetstr(inputWin, ch); //get line and store in ch variable
…
1
vote
3answers
101 views
How To Change List of Chars To String?
In F# I want to transform a list of chars into a string. Consider the following code:
let lChars = ['a';'b';'c']
If I simply do lChars.ToString, I get "['a';'b';'c']". I'm try …
1
vote
5answers
160 views
C++ convert int and string to char*
This is a little hard I can't figure it out.
I have an int and a string that I need to store it as a char*, the int must be in hex
i.e.
int a = 31;
string str = "a number";
I …
0
votes
3answers
50 views
Remove specified text from beginning of lines only if present (C#)
I have a textbox in which the user can edit text, in a scripting language. I've figured out how to let the user comment out lines in one click, but can't seem to figure out how to …
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" …
3
votes
3answers
135 views
How to efficiently concatenate strings in Go?
In Go, string is a primitive type, it's readonly, every manipulation to it will create a new string.
So, if I want to concatenate strings many times without knowing the length of …
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
1answer
22 views
Extract part of string in flash
Hi all,
I have this string
<p><img src="http://www.foo.com/bar.jpg"></p><p>other content here</p>
I need to extract the src url . The img tag appe …
6
votes
13answers
426 views
Using C, convert a dynamically-allocated int array to a comma-separated string as cleanly as possible
I’m much less experienced in C than I am in higher-level languages. At Cisco, we use C, and I sometimes run into something that would be easy to do in Java or Python, but very diff …
0
votes
6answers
59 views
Regular Expressions and php
I have a form where users enter a URL. I need a regular expression to skip the part 'http://' if present. For example, if the user insert into the form: http://youtube.com I need t …
0
votes
8answers
138 views
How to check if there are only spaces in string in PHP?
print_r(strlen(trim(' ')));
the result is 9
I also tried
preg_replace('/[\n\r\t\s]/', '', ' ')
but the result is not zero.
Please download my code and you will get th …
