Search Results

-3
votes
4answers
293 views

how to find all occurences of a certain character in PHP?

the most efficient way? …
2
votes
7answers
837 views

How do I trim a file extension from a String in Java?

What's the most efficient way to trim the suffix in Java, like this: title part1.txt title part2.html => title part1 title part2 …
1
vote
8answers
841 views

how to parse this string in java?

"prefix/dir1/dir2/dir3/dir4/.." how to parse the dir1,dir2 .. value out of the above string in JAVA? The prefix here can be : /usr/local/apache2/resumes …
0
votes
5answers
94 views

Why is the output of these 2 functions different ?

$value = '\\40'; file_put_contents('o.txt',$value); file_put_contents('o2.txt',var_export($value,true)); D:\test>php str.php D:\test>cat o.txt \40 D:\test>cat o2.txt '\\40' …
1
vote
6answers
207 views

how to process string in java

I want to make strings like "a b c" to "prefix_a prefix_b prefix_c" how to do that in java? …
0
votes
10answers
495 views

Java string comparison?

String parts is String[6]: [231, CA-California, Sacramento-155328, aleee, Customer Service Clerk, Alegra Keith.doc.txt] But when I compare parts[0] with "23 …
1
vote
4answers
274 views

How to split a string by multiple delimiters in PHP?

"something here ; and there, oh,that's all!" I want to split it by ; and , so after processing should get: something here and there oh that's all! …
-10
votes
3answers
185 views

How to reverse a string with PHP?

$s = '1000'; after process,should be '0001' …