Tagged Questions
The substr tag has no wiki summary.
15
votes
4answers
438 views
Can std::string overload “substr” for rvalue *this and steal resources?
It just occurred to me I noticed that std::string's substr operation could be much more efficient for rvalues when it could steal the allocated memory from *this.
The Standard library of N3225 ...
10
votes
6answers
3k views
Using PHP substr() and strip_tags() while retaining formatting and without breaking HTML
I have various HTML strings to cut to 100 characters (of the stripped content, not the original) without stripping tags and without breaking HTML.
Original HTML string (288 characters):
$content = ...
5
votes
3answers
102 views
Perl substr(STRING, @ARRAY) ne substr(STRING, OFFSET, LENGTH)?
Why is this in Perl:
@x=(0,2);
substr('abcd',@x)
evaluated as "cd"?
And this:
substr('abcd',0,2);
evaluated as "ab"?
5
votes
3answers
773 views
What is the equivalent of REGEXP_SUBSTR in mysql?
I want to extract a word from a string column of a table.
description
===========================
abc order_id: 2 xxxx yyy aa
mmm order_id: 3 nn kk yw
Expected result set
order_id
...
5
votes
3answers
1k views
PHP function substr() problem
When I use substr() I get a strange character at the end
$articleText = substr($articleText,0,500);
I have an output of 500 chars and � <--
How can iIfix this? Is it an encoding problem? My ...
5
votes
6answers
11k views
What linux shell command returns a part of a string?
I want to find a linux command that can return a part of the string. In most programming languages, it's the substr() function. Does bash have any command that can be used for this purpose. I want to ...
4
votes
2answers
388 views
What the difference between slice() and substr() in javascript
Can i ask what the difference between string object slice() and substr() in javascript?
4
votes
6answers
2k views
How should substring() work?
I do not understand why Java's String.substring() method is specified the way it is. I can't tell it to start at a numbered-position and return a specified number of characters; I have to compute the ...
3
votes
1answer
52 views
How do I create an “if” statement to evaluate the first 7 characters in PHP?
I'm trying to achieve writing this in php:
if ($image starts with "photos/") {
echo "the image path starts with photos/";
}
3
votes
6answers
95 views
How can I use Perl to incrementally print a string?
my $line2 = ("My cat Garfield");
my $leng2 = length $line2;
my $longmatch;
my $post = 0;
my $letter = 1;
for(my $post = 0; $post < $leng2; $post++) {
for($letter = 1; $letter <= $leng2; ...
3
votes
5answers
171 views
perl : how to split?
I have a string aa:bb::cc:yy:zz which needs to be split in such a way that I have an array with aa:bb::cc, yy, zz. i.e. I want to create two substrings from last with : as delimiter and remaining as a ...
3
votes
7answers
125 views
substr with strlen
i have an amount like 0003000 the last 2 digits are the decimalnumber. I want to transform 0003000 to 00030,00 (insert an decimal in front of the last 2 digits).
i tried to do this with substring, ...
3
votes
3answers
325 views
php substr with special character at end result in questionmark
When I use the substr() function in php, I get an questionmark (a square with a questionmark - depending on browser) at the end of the string when this last character was a special one, like ë or ö, ...
3
votes
2answers
172 views
Basic question, error: substr out of range
So I'm writing a program and part of it is to deal with an array of strings, and from each element in the string array, I am trying to take out every bi-gram within the string and place that in ...
3
votes
2answers
201 views
jQuery each function not working need to replace each attribute
I have this html
<form method="POST" action="" id="order" class="forms">
<div>
<span class="col1">Ref.</span>
<span class="col2">Number</span>
...
3
votes
4answers
246 views
Converting a C (\0 terminated) string to a PHP string
PHP is one of those languages I use periodically, but usually have to dust the cobwebs off when I start using it again. The same applies this week whilst I port some C code to PHP. This uses a lot of ...
3
votes
4answers
443 views
PHP limit text string NOT including html tags?
Here's what's NOT working for me:
<?php
$string = 'I have a dog and his name is <a href="http://www.jackismydog.com">Jack</a> and I love him very much because he\'s my favorite dog in ...
2
votes
1answer
37 views
PHP substr but keep HTML tags?
I am wondering if there is an elegant way to trim some text but while being HTML tag aware?
For example, I have this string:
$data = '<strong>some title text here that could get very ...
2
votes
4answers
66 views
Why can't my Perl script differentiate between `0` and `“ ”`?
Perl noob here - i have the following script
if(substr($pc, 3,1)!=" "){
$newpc = substr($pc, 0, 4) . " " . substr($pc, 4);
}
It's designed to put a space in postcodes, for example NN141NJ ...
2
votes
1answer
69 views
UTF-8 hex counted as single character with mb_substr?
First off - I'm a php novice. I'm trying to limit the length of titles on a wordpress theme using mb_substr but it's returning fewer characters when there are certain symbols within the title such as ...
2
votes
1answer
135 views
Remove all characters after a specific character in PL/SQL
How do I get a substring from this example value:
john.abc_1234
I want it to return john.abc.So basically we need to remove all the information after _.
More examples: 1234_abc
2
votes
5answers
277 views
Why is substring not part of the C standard library?
I know C is purposefully bare-bones, but I'm curious as to why something as commonplace as a substring function is not included in <string.h>.
Is it that there is not one "right enough" way to ...
2
votes
4answers
207 views
Delete first character and last character from String PHP
I need to delete the first 3 letters of a string and the last 3 letters of a string. I know I can use substr() to start at a certain character but if I need to strip both first and last characters i'm ...
2
votes
2answers
222 views
substr() with negative value not working in IE
EDIT:I've changed the title, because the issue had nothing to do with IE image.load() firing - my substr() wasn't working (see accepted answer).
There's a ton of posts about making sure that you ...
2
votes
4answers
139 views
Foreach strpos problem. Find string in another string
I'm trying to get this script to work.
The idea is that if the input string ($query) doesn't start with '/t' AND contains one of the $trigger words, an $error is set.
I can't get this to work and ...
2
votes
8answers
184 views
php problem: strpos function not working
why is the following php code not working:
$string = "123";
$search = "123";
if(strpos($string,$search))
{
echo "found";
}else{
echo "not found";
}
as $search is in $string - shouldn't it ...
2
votes
4answers
103 views
Trying to make sure html tags are not left open in php
I cannot figure out why this code is not working:
<?php
$text = "<a><li><ul><ol>Hello";
$tags = array('a', 'li', 'ul', 'ol');
$tagcount = count($tags);
$i = 0;
...
2
votes
5answers
220 views
Jquery/Javascript - store last 4 letters of string (cross browser)
I've written a quick image swap class that switches images on hover by placing adding '_grey' to the image src. The code works great throughout the site in all browsers apart from ie6. The substr ...
2
votes
3answers
691 views
How efficient is PHP's substr?
I'm writing a parser in PHP which must be able to handle large in-memory strings, so this is a somewhat important issue. (ie, please don't "premature optimize" flame me, please)
How does the substr ...
2
votes
4answers
407 views
Substring C from string like folder1/file1.txt
i have strings like "folder1/file1.txt" or "foldername1/hello.txt" and i need to take the substring that identify the folder name with the slash (/) included (example: from "folder1/file1.txt" i need ...
2
votes
1answer
625 views
Problem with diacritics and mb_substr
I am slicing unicode string with diacritics using mb_substr function but it works as I would use simple substr function. It splits unicode characters in half displaying question marked diamond.
E.g.
...
2
votes
4answers
1k views
Javascript substr(); limit by word not char
I would like to limit the substr by words and not chars. I am thinking regular expression and spaces but don't know how to pull it off.
Scenario: Limit a paragraph of words to 200 words using ...
2
votes
3answers
434 views
l-value substr method in C++
I want to create a substr method in C++ in a string class that I made.
The string class is based on C-style string of course, and I take care of the memory management.
I want to write a ...
2
votes
5answers
1k views
Can I use Perl's unpack to break up a string into vars?
I have an image file name that consists of four parts:
$Directory (the directory where the image exists)
$Name (for a art site, this is the paintings name reference #)
$File (the images file name ...
1
vote
5answers
56 views
PHP extract values from a string
I'm processing records in PHP and was wondering if there is an efficient method to pull out the genre: values from each of the following records. genre: can be anywhere in the string.
In the ...
1
vote
2answers
60 views
Put dash between every third character
I had a problem on how to put dash in every 3rd character. For example, I want
ABCDEF turn into ABC-DEF
I have this code:
$string = 'ABCDEF';
echo ...
1
vote
4answers
85 views
Extract value from url in php
I've a URL similar to this:
http://somethinfs.com/folder/134039/the_title_of_somethings.html
http://somethinfs.com/folder/184738/the_title_of_somethings_else.html
From this URL, I need to extract ...
1
vote
1answer
93 views
PHP use str_replace, substr and strpos all together
What I am trying to do is to convert url of a video on youtube/vimeo return a new url that can be embed into an iframe and automate video embed codes.
This is working like a charm.
$url = ...
1
vote
3answers
66 views
Mysql COUNT, GROUP BY and ORDER BY
This sounds quite simple but I just can't figure it out.
I have a table - orders (id, username, telephone_number)
I want to get number of orders from one user by comparing the last 8 numbers in ...
1
vote
3answers
86 views
Adding dots(.) after certain characters from mysql response
I have a random mysql response. I need to display the response in smarty template. I want to add dots in one column, but don't know how to do it. Here is my code:
function homepage_profiles()
{
...
1
vote
2answers
334 views
Django substr / substring in templates
Could someone tell me, does the method like substr in PHP (http://pl2.php.net/manual/en/function.substr.php) exist in Django templates?
1
vote
2answers
52 views
PHP string formatting (substr)
I have a function that outputs a path, here are some results:
http://server.com/subdirectory/subdiretory/2021/12/file.txt
http://server.com/subdirectory/subdiretory/something/else/2016/16/file.txt
...
1
vote
3answers
78 views
php compare string of keywords
I need to compare these two strings of keywords with php.
$original_keywords = cat, dog, mouse
$possible_keywords_1 = "cat, dog, hamster";
$possible_keywords_2 = "cat, sheep, goat";
I need ...
1
vote
3answers
405 views
How to prevent showing the diamond question mark symbol, even using mb_substr and utf-8
I have read some other questions, tried the answers but got no result at the end. What I get is for example this
Μήπως θα έπρεπε να � ...
and I can't remove that weird question mark. What I do is ...
1
vote
3answers
223 views
Oracle extract variable number from string
I'm looking to extract a specific number out of a string of mixed alphanumeric characters that are variable in length in a query. I will need this in order to calculate a range based off that number. ...
1
vote
4answers
104 views
Simple substr and strlen question…I'm going crazy
Ok, so looking at this code:
$accountMask = substr($transaction['cc_number'], strlen($transaction['cc_number'])-4);
I think it takes a number like this: 1234567890
And turns it into this: 123456
...
1
vote
2answers
134 views
PHP: Time & Date: easy substr problem, Need to split date and time from 1 string
I have this string from eBay Web-Service.
// 2Days 23Hours 37Minutes 50Seconds
$string = P2DT23H37M50S
I was using the following code to extract and time and date:
$daysLeft = ...
1
vote
2answers
153 views
php, substr, 'out of memory'
So I have a script that imports CSV files into a contacts table in a database.
I have made a script that will grab a chunk of a CSV and process it, update a queue table with its progress, and then ...
1
vote
5answers
62 views
gets rid off the delimiter
hi i have got the following issues i am using the following code.
<?php
//DB CONNECTION
$ROWS = "id,firstname,lastname";
// explode at the comma and insert into an array
$test = explode("," , ...
1
vote
1answer
293 views
Process text file by C++ — extract a certain string from text file
I am a new learner to C++.
I have a text file, its contents like following:
Systemname localtesthost
SystemIp X.X.X.X
Systemowner root
...
Now I want to extract the value of "Systemname", ...