Tagged Questions

4
votes
3answers
473 views

Best way to create SEO friendly URI string

The method should allows only "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-" chars in URI strings. What is the best way to make nice SEO URI string?
2
votes
2answers
361 views

C++: Chr() and unichr() equivalent?

I could have sworn I used a chr() function 40 minutes ago but can't find the file. I know it can go up to 256 so I use this: std::string chars = ""; chars += (char) 42; //etc So that's alright, but ...
2
votes
5answers
7k views

Putting char into a java string for each N characters

I have a java string, which has a variable length. I need to put the piece "<br>" into the string, say each 10 characters. For example this is my string: `this is my string which I need to ...
1
vote
4answers
60 views

how to change all chars in string with numbers in C#?

i want to change chars with numbers, for example: a with 1, b with 2... z with 26. so the string "hello" will be something like this: 82491513621. the first question is: how to do this with easiest ...
0
votes
1answer
155 views

Ruby - how to select first chars from string

I am trying to find a function for select e.g. first 100 chars of the string. In PHP exist substr function Have Ruby some similar function? Thanks a lot, M.
0
votes
3answers
111 views

Storing Chars Into Strings in C++

So right now I have this code that generates random letters in set increments determined by user input. #include <iostream> #include <string> #include <cstdlib> using namespace ...
0
votes
3answers
76 views

Where in the ruby doc is string.chars defined?

I've been learning ruby by solving project euler problems and in one solution to a problem I saw you could do something like "12341".chars.inject(1) { |prod, n| prod * n.to_i }. I've looked on the ...
0
votes
3answers
278 views

BSTR and SysAllockStringByteLen() in C++

I'm new to C++, so this may be a noobish question; I have the following function: #define SAFECOPYLEN(dest, src, maxlen) \ { ...