I Want To Remove char ( = and " ) from string value ...
1 => Illuminate\Support\Collection {#1166 ▼
#items: array:1 [▼
0 => "="12042205115""
]
}
I Want To Get string from ="12042205115" to 12042205115
I Want To Remove char ( = and " ) from string value ...
1 => Illuminate\Support\Collection {#1166 ▼
#items: array:1 [▼
0 => "="12042205115""
]
}
I Want To Get string from ="12042205115" to 12042205115
using a regular expression you can do that, try this one
$data= '="12042205115"'; preg_replace('/\D/', '', $data);