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 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=...

How to Send Emails in Node.js using Nodemailer and Ethereal

How to Send Email in Node.js using Nodemailer Email functionality is essential in modern web applications. Whether you're sending confirmation emails, password resets, or notifications, Node.js with Nodemailer makes this simple. In this blog, we'll walk through setting up email sending using Node.js , Express , and Ethereal Email for testing. ๐Ÿงพ Prerequisites Node.js installed Basic knowledge of Express.js Internet connection ๐Ÿ“ Project Structure project-folder/ ├── index.js ├── .env ├── package.json └── app/ └── controller/ └── emailSendController.js ๐Ÿ“ฆ Step 1: Install Dependencies npm init -y npm install express nodemailer dotenv npm install --save-dev nodemon ๐Ÿ” Configure nodemon (Optional but Recommended) Update your package.json with a custom start script: "scripts": { "start": "nodemon index.js" } ๐Ÿ” Step 2: Create a .env File Create a .env file a...

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...