Skip to main content

Stringable toInteger Method in Laravel

What is Stringable in Laravel?
Stringable is a class that wraps around a string and provides a fluent, chainable API to manipulate it.

Available from: Laravel 10.x and above

use Illuminate\Support\Str;

$string = Str::of('123');

Now, $string is an instance of Illuminate\Support\Stringable, and you can chain methods like:

Str::of(' 123 ')->trim()->toInteger(); // returns 123 as integer

Use with Chainable String Manipulations

$amount = Str::of('$25')->replace('$', '')->trim()->toInteger(); // 25

Real-world Scenario

You're building a Laravel form where users enter their age. The age input comes as a string, and you want to:

  • Clean any extra spaces.
  • Convert it to an integer before saving or processing it.

Example: Handling User Input for Age

<input type="text" name="age" value="  25  ">

Now in your controller, you handle the input like this:

use Illuminate\Support\Str;

public function store(Request $request)
{
    $rawAge = $request->input('age'); // "  25  "
    $age = Str::of($rawAge)->trim()->toInteger(); // result: 25

    if ($age >= 18) {
        return "Eligible";
    } else {
        return "Not eligible";
    }
}

Why Not Just Use (int) $value?

This can be achieved like this:

$age = (int) trim($request->input('age'));

But using Str::of(...)->trim()->toInteger():

  • Keeps your code clean and chainable.
  • Great when chaining with other string operations like replace or slug.
  • Matches Laravel’s expressive coding style.

🧠 Safe Conversion Practice

Always check if the input is numeric before converting:

$age = Str::of($request->input('age'))->trim();

$ageValue = $age->isNumeric()
    ? $age->toInteger()
    : 0; // or throw validation error

🔁 Bonus: Using intval() with Base Detection

You can use intval($value, base) for more control:

intval('0x1A', 0); // 26 (hex)
intval('0b1010', 0); // 10 (binary)

📦 Real-World Usage Examples

Converting prices or CSV data:

// Parsing a price string
$price = Str::of('$1,299')->replace(['$', ','], '')->toInteger(); // 1299

// From a CSV row
$row = ['name' => 'John', 'age' => '  30 '];
$age = Str::of($row['age'])->trim()->toInteger(); // 30

🎯 Takeaways

  • Stringable::toInteger() is great for clean numeric conversion of strings.
  • Chain with trim(), replace(), etc. for readable logic.
  • Validate or sanitize input before converting to avoid bugs.
  • Prefer native casts ((int), intval()) when chaining isn’t needed.
  • Use intval($value, base) for hex, binary, octal support.

Comments

Popular posts from this blog

How to Display Flash Messages in EJS using Node.js and Express

Displaying Flash Messages in EJS with Node.js and Express Flash messages are a great way to give users quick feedback — like "Login successful!" or "Please enter all fields!" . In this guide, you’ll learn how to implement them using: express-session connect-flash EJS templating 📦 Step 1: Install Required Packages npm install express express-session connect-flash ejs ⚙️ Step 2: Setup Express App and Middleware const express = require('express'); const session = require('express-session'); const flash = require('connect-flash'); const app = express(); // Set view engine app.set('view engine', 'ejs'); // Middleware app.use(express.urlencoded({ extended: true })); app.use(session({ secret: 'yourSecretKey', resave: false, saveUninitialized: true })); app.use(flash()); // Make flash messages available to all views app.use((req, res, next) => { res.lo...

Realtime Device Tracker using Node.js, Socket.IO & Leaflet

Realtime Device Tracker using Node.js, Socket.IO & Leaflet In this tutorial, you’ll learn how to build a realtime location tracking application that uses the browser’s GPS, Socket.IO for live communication, and Leaflet.js to display users on a map. 🚀 Project Overview Backend: Node.js, Express.js, Socket.IO Frontend: HTML, Leaflet.js, Socket.IO client Features: Live GPS tracking, multi-user map, disconnect cleanup 📁 Folder Structure project-root/ ├── app.js ├── package.json ├── src/ │ ├── public/ │ │ ├── css/ │ │ │ └── style.css │ │ └── js/ │ │ └── script.js │ ├── routes/ │ │ └── routers.js │ ├── socket/ │ │ └── socketHandler.js │ └── views/ │ └── index.ejs 🧠 How It Works Each user shares their location using the browser's navigator.geolocation API. Location is sent to the server via Socket.IO . The server broadcasts each user’s position to all clien...

How to Use L5-Swagger for API Documentation in Laravel

Integrating Swagger in Laravel: Annotations, JSON, and YAML What is Swagger? Swagger (OpenAPI) is a powerful tool for generating interactive API documentation. It helps developers understand and test your API easily. ✅ Step-by-Step Guide to Setup L5-Swagger 1. Install L5-Swagger Package composer require "darkaonline/l5-swagger" 2. Publish Config & View Files This command publishes the config file to config/l5-swagger.php : php artisan vendor:publish --provider "L5Swagger\L5SwaggerServiceProvider" 3. Configure Swagger (Optional) Edit the file config/l5-swagger.php to update: API Title Base Path Directories to scan for annotations 4. Add Swagger Annotations Add these before your controller class: /** * @OA\Info( * version="1.0.0", * title="Your API Title", * description=...