Jump to content

Finding a dynamic string (preg_match?)


Disturbed One

Recommended Posts

Hello,

 

If I get a string $str = '(Transaction ID: XXXXXXXXXXXX)';

 

How can I grab the X values? This is a 12 digit alphanumeric value. I believe this is done using preg_match? But I'm not sure exactly how to use this function.

 

Thank you!

Link to comment
Share on other sites

<?php

$string = '(Transaction ID: 1234567653455)';
preg_match('/Transaction ID: ([\d]+)/', $string, $matches);
print_r($matches);

 

Understand that \d is already a shorthand character class (for [0-90-9] exponents in the event your locale supports them), so there would not be any need to encase that inside a character class as you have done. Assuming exponents are not an issue, simply doing (\d+) would have sufficed.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.