In ACF, the_field(‘battery’); outputs as follows :
Battery : Sony Rechargeable Ni-MH 2200 mAh battery
or
Battery : Energizer AA Rechargeable Batteries 2300 mAh NiMH
How can i achieve this (showing only mAh details) :
Battery : 2200 mAh
or
Battery : 2300 mAh
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
You have to use a regex, in this case, to extract the needed value from a string:
$string = 'Energizer AA Rechargeable Batteries 2300 mAh NiMH';
preg_match('/([0-9]+s*mah)/i', $string, $capacity );
if ( isset( $capacity[0] ) ) {
printf('Battery: %s', $capacity[0] );
}
This regex /([0-9]+s*mah)/i will look for any numbers followed by case insensitive mah combination.
You can test this regex online here https://regex101.com/r/KDdHbp/1/
Also, here is documentation on preg_match https://www.php.net/manual/en/function.preg-match.php
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0