Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
$str=':this is a applepie :) ';

How to use php, remove the first character : with php?

share|improve this question
possible duplicate of PHP Subtract First Character of String – Gordon Jan 9 '11 at 11:48
possible duplicate of Remove first 4 characters of a string php – Gordon Jan 9 '11 at 11:48

5 Answers

up vote 13 down vote accepted

if its always :

you can use ltrim

$str= ltrim ($str,':');
share|improve this answer

The substr() function will help you here:

 $str = substr($str, 1);

Strings are indexed starting from 0, and this functions second parameter takes the cutstart. So make that 1, and the first char is gone.

share|improve this answer
Be aware of unicode. If you're dealing with an arbitrary string (e.g. "Ål <- danish for eel"), you should use mb_substr and specify the encoding. – Thomas Jensen Jun 17 '12 at 11:22

Use substr:

$str = substr($str, 1); // this is a applepie :)
share|improve this answer

Or for any char, if the data is trimmed and has no spaces at the left,

unset($str[0])

Quick, simple and painless.

share|improve this answer

Trims occurrences of every word in an array from the beginning and end of a string + whitespace and optionally extra single characters as per normal trim()

<?php
function trim_words($what, $words, $char_list = '') {
    if(!is_array($words)) return false;
    $char_list .= " \t\n\r\0\x0B"; // default trim chars
    $pattern = "(".implode("|", array_map('preg_quote', $words)).")\b";
    $str = trim(preg_replace('~'.$pattern.'$~i', '', preg_replace('~^'.$pattern.'~i', '', trim($what, $char_list))), $char_list);
    return $str;
}

// for example:
$trim_list = array('AND', 'OR');

$what = ' OR x = 1 AND b = 2 AND ';
print_r(trim_words($what, $trim_list)); // => "x = 1 AND b = 2"

$what = ' ORDER BY x DESC, b ASC, ';
print_r(trim_words($what, $trim_list, ',')); // => "ORDER BY x DESC, b ASC"
?>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.