Part of a string, or the function/method that returns part of a string
0
votes
0answers
17 views
Uncaught TypeError: Cannot call method 'substr' of undefined
So I get the error above, here's what I have done
var positions = new Array();
...
positions[i]=String.fromCharCode(adding_y) + "" + String.fromCharCode(adding_x);
...
if ...
0
votes
1answer
11 views
PHP - variabel using substr() cant be extended
I'm busy creating an account-system. The user gives his first name & last name. I create a record in my database with the first letter of their first name and their full last name.
To get their ...
1
vote
1answer
38 views
how to make query with substr in eloquent (laravel 4)?
I have this query:
select substr(id,1,4) as id
from meteo.a2012
group by substr(id,1,4)
I just want to take first 4 numbers to my id row, but I'm trying to do in eloquent, how I do?
Thanks.
-1
votes
2answers
91 views
Simple C++ Substring Issue [closed]
The program does not properly find the substrings of each section of the name "John Fitzgerald Kennedy", and cannot output each name on a separate line. The program outputs a out of range exception ...
0
votes
7answers
46 views
How to select all characters to the right of a specific character in a string - PHP
I spent a long time trying to figure this out! How do I select all the characters to the right of a specific character in a string when I don't know how many characters there will be? To my ...
0
votes
2answers
75 views
C : Using strtok() to parse text file
I've been trying to make a program that parses a text file and feeds 6 pieces of information into an array of objects. The problem for me is that I'm having issues figuring out how to process the text ...
0
votes
1answer
64 views
php substr - does it know to end html tags? [duplicate]
I'm creating my own personal blog, where I can create blog entries. on the front end of my website, it will show part of the blog entry, and users will have to click the "Read More" to read the whole ...
0
votes
2answers
17 views
substr issues with a 'Last Updated' value
I have statistics that require a 'Last Updated' section on a dynamic image, and is expressed in hours. This is done with the following:
$lastDate = $StatData->date;
$now = date("Y-m-d G:i:s");
...
1
vote
1answer
19 views
Get a substr of a long stream
I want to read only some finite characters of beginnings of some long streams, but file_get_contents does not support seek operations, and I must first read the whole stream to extract the desired ...
0
votes
2answers
49 views
C : Using substr to parse a text file
I just need a little help with file parsing. We have to parse a file that has 6 string entries per row in the format:
"string1", "string2", "string3", "string4", "string5", "string6"
My instructor ...
0
votes
1answer
19 views
Get a number that follows a specified number and element
I want to search in a string for an unknown value. For example, I want to search in the string "1:54,2:22,3:21" for the number that follows "2:". So I want "22" for my result. This is the code I've ...
2
votes
2answers
59 views
Break string based on a character in VBA 2010
In Excel 2010, using VBA, how can I breakapart a string when it finds a certain character?
Let say A1 = "This is a | test of | the | emergency broadcast signal"
And I assign that to a variable like
...
0
votes
5answers
97 views
Delete the first character of array elements in Perl
I would like to remove the first character from a the elements of an array in a Perl script.
I have this line of script:
@dash = split /\s+/, $dash;
The variable "dash" is read from a particular ...
0
votes
1answer
36 views
Error SQLCODE -138 when doing a trigger in DB2
I get the following error trying to create a stored procedure in DB2
Error report:
DB2 SQL error: SQLCODE: -138, SQLSTATE: 22011, SQLERRMC: null
My trigger is the following one:
CREATE TRIGGER ...
0
votes
2answers
41 views
How to find if two characters are in an array php
I am looking to develop a search function that allows users to just search for the item, or modify their search with a price range in brackets. So that is to say if they are looking for a car, then ...
0
votes
1answer
23 views
mysql substr not working like php
Please help me resolve my query when using query - I just want to subtract a few characters and then use the % to find the matching LIKE:
select * from `providers` WHERE `name` LIKE ...
1
vote
2answers
59 views
Oracle Substring after specific character
I already found out I need to use substr/instr or regex but with reading the documentation about those, I cant get it done...
I am here on Oracle 11.2.
So here is what I have.
A list of Strings like:
...
3
votes
6answers
133 views
Is there a function in PHP akin to substr() for integers?
I have a phone number which will be recorded as an int (e.g 1234512312345) on my database but which I would like to represent as (12345) 123 - 12345 on a webpage. If it was a string I would use ...
0
votes
2answers
77 views
How do I cut up string using a delimiter (space) just like substr in php?
This is my Mystr value:
others:0.01 penalty:0.02 pdi:0.03 pdp:0.04 interest:0.05
principal:0.06 cbu:0.07 savings:0.08 bankcharge:0.09 grt:0.10
My desired output:
others:0.01
...
-1
votes
5answers
68 views
Add “…” if text extra chars are left. Using substr
I have text, for example:
$str = 'Hi there bla bla';
I used substr function for $str
substr($str, 0 , 20);
I got full text, but if I have longer text, lets say:
$str = "Hi there bla bla Hi ...
1
vote
4answers
83 views
This regex is cutting off the last word in the string even though strlen is within acceptable range
$theExcerpt = 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis'
$theExcerptAppend = ...
0
votes
4answers
103 views
How to convert string to long long
All the solution I found seem to use atoll but that takes char while I have a string. For example I read an input $100, put it into a string and check if the first char is $. Then I need to convert ...
-2
votes
2answers
47 views
I Want get end substr
So this is my code: i want get agm from http://example.com?agm=12345 end substr agm to get 12
echo $_GET["agm"] if substr(["agm"], 0, -3);
0
votes
1answer
57 views
Extracting text in R
I am trying to extract a variable-length substring of text using R. I have several characters such as the following:
"\"/Users/Nel/Documents/Project/Data/dataset.csv\""
I need to extract the file ...
-1
votes
1answer
65 views
c++ why this error “basic_string::substr” and breaking up the loop
i am trying to get the last letters of a word, to compare if these letters row are in a vector.
So i want to check first the last 2, then the last 3 and the last 4 letters. As soon as it finds one, ...
1
vote
3answers
78 views
MySQL remove left over time from datetime converted to varchar. Substr()?
I'm doing things a bit backwards:
So I have converted a column from datetime into varchar (there are valid reasons). My issue is all of the 0's from TIME have also varied over. Trying to use concat() ...
0
votes
1answer
49 views
Weird results with substr and mkdir function in php
I have a fileupload with php but that's irrelevant because my real problem is that i have this code:
if (!empty($_FILES)) {
$tempFile = $_FILES['Filedata']['tmp_name'];
$real = ...
0
votes
1answer
65 views
substr within a while loop PHP SQL
I have had to resort to posting on here, totally lost on this one!
I have an array which i can successfully print as it should, but i need to limit how may characters are printed. I know this can be ...
-2
votes
3answers
85 views
How to remove last comma from string using php?
Hello I am using loop to get values from my database and my result is like:
'name', 'name2', 'name3',
And I want it like this:
'name', 'name2', 'name3'
I want to remove comma after last value of ...
0
votes
2answers
68 views
If the last character is a “/”, remove it
I am making a search engine from scratch (lol), and I am stick with this problem:
When a user submits a URL, my "spider" "crawls" it for other links.
Some people of course use <a href="/page"> ...
0
votes
1answer
54 views
Why does this PHP statement strip 7's unexpectedly?
I would love a fresh pair of eyes looking at my problem which is driving me mad. Any help would be appreciated.
From just 2 lines of PHP code im trying to strip the first '44' if a user enters it at ...
0
votes
1answer
69 views
Highlight active menu item
I have a menu created by a list. I would like to be able to highlight the current menu item.
With this script I'm able to match the last bit of the url (everything after the last /), but I need the ...
0
votes
1answer
51 views
PHP string offset? Using a variable like a buffer when doing many substr is too slow?
I have a buffer that need to be interpreted by PHP, however using many substr subsequently on the buffer proved to be very slow and cpu intensive, likely because substr create a new copy of the ...
-4
votes
1answer
284 views
Warning: substr() expects parameter 2 to be long [closed]
Why am I getting this error while using substr:
Warning: substr() expects parameter 2 to be long`
$url = "http://coast.x-matic.net/forums/categories/pso-news";
$ch = curl_init();
...
-1
votes
1answer
54 views
Could i search between keys of a hash and assign its value to a variable in Perl?
I want to use substr function to recuperate some nucleotides in a sequences. Here i have the FASTA format of those sequences:
>dvex28051
...
1
vote
1answer
77 views
Multiple elements for substr C++
I am working on a function which needs me to take the substring of the first two elements of a line.
char those = line.substr(0,1);
When I run the program, it only takes the first element, ...
0
votes
1answer
104 views
Counting words in PHP
I have a problem with counting words in PHP, this is my code:
$word=substr(stripslashes(strip_tags($row['short_story'], '<a></a>')), 0,100 )."...";
$tpl->set( '{word}',$word);
on ...
4
votes
2answers
103 views
why slice() and substr() methods in javascript doesn't work on regular expressions?
my code is:
var st="man myfile=l/p/nm.mp3 yourfile=/o/mj/nnc.mp3 ou p";
var patt=/myfile.[\W|\w]*.mp3\s/;
var s=patt.exec(st);
var s2=s.slice(3,4);
alert(s2);
but slice() gives me nothing and ...
-1
votes
3answers
42 views
Truncate php variable before symbol
Can anyone help me with a quick solution to a problem?
I have a string that is returned from an api, the string comes like this:
$year = "181?make=2008"
So I was using substr($year, 0,3); to get ...
1
vote
9answers
166 views
Extract a substring between two characters in a string PHP
Is there a php function that can extract a phrase between 2 different characters in a string? Something like substr();
Example:
$String = [modid=256];
$First = "=";
$Second = "]";
$id = ...
0
votes
1answer
117 views
Sencha Touch Cannot call method 'substr' of null on Loacations:10
Hi as the Title says i am getting this error suddenly without changing anything.
This is the File Locations Code:
Ext.define('Wickelplaetze.store.Locations', {
extend: 'Ext.data.Store',
requires: ...
2
votes
2answers
141 views
substr doesn't work fine with utf8
I am using a substr method to access the first 20 characters of a string. It works fine in normal situation, but while working on rtl languages (utf8) it gives me wrong results (about 10 characters ...
0
votes
0answers
126 views
substring and substr php to java
Hi I am currently trying to link a java application I am making to a website I have. Basically I want the accounts that are made on the site to be accessible on the java app. on my login page I have a ...
0
votes
0answers
51 views
Google Bubble Chart Title too Long
I'm using the Google Bubble Chat (https://google-developers.appspot.com/chart/interactive/docs/gallery/bubblechart) to graph some data on my website. Much like the first example, I've cut down the ...
0
votes
2answers
109 views
How do I use substring to find the correct part of line of numbers? [closed]
Working on an assignement where I need to implement the knowledge of substring, but I run into compile errors with it.
#include <iostream>
#include <iomanip>
#include <conio.h>
...
0
votes
1answer
34 views
Substring excluding hyperlinks
This is obvious, but if you perform a substr on a $content field, the output of characters is going to depend on any href attributes in the content. Is there a simply way to perform the substr while ...
0
votes
1answer
46 views
Using substr with URLs
I am outputting a string using the substr function and limiting the output to 100 characters. The problem is sometimes the string contains a URL with over 100 characters.
Does anyone have any advice ...
0
votes
3answers
394 views
Oracle SQL substr/instr solution required
I need help with an SQL statement I am trying to run, I have done quite a bit of reading and testing but I cannot get the correct results hence my request here.
I am trying to extract data from a ...
4
votes
3answers
191 views
PHP substr() function that allows you to set start and stop point AND keeps HTML formatting?
With the normal substr() function in PHP you have the ability to decide where you want to "start" cutting the string, as well as set as setting the length. The length is probably used the most, but in ...
-2
votes
5answers
104 views
Trim all characters before an integer in a string in PHP?
I have an alpha numeric string say for example,
abc123bcd , bdfnd567, dfd89ds.
I want to trim all the characters before the first appearance of any integer in the string.
My result should look ...





