Top "Substr" questions

A function/method that returns part of a string.

Oracle: to_number() combined with substr() and regexp_like() in WHERE clause

I have a table with a column "description" which has the following values: OPTestMachine OPManualTesting OP1010 So the select statement, …

sql oracle substr regexp-like
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 …

laravel laravel-4 substr eloquent
How to use the substr function in mongodb?

This is my solution to export data from mongo into a table into oracle, if there's a better way, I'd …

mongodb match substr
SQLite trim end characters from string

Using SQLite. ltrim(ltrim(substr(tablename.time, 11),'0123456789'),'-') as main_time I have the above trim function which …

sql sqlite trim substr
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"; } …

php substr