/**
 * Parses text into shortcodes.
 *
 * @param string $input A text containing Shortcodes
 *
 * @return array Returns array of parsed shortcodes.
 *
 * @access public
 */
public function parseText(string $input): array

Examples

use Thermage\Thermage;
use Thunder\Shortcode\Shortcode\ShortcodeInterface;
use function strings;

$shortcodes = Thermage::getShortcodes();

$shortcodesCollection = $shortcodes->parseText('[b]Stay RAD![/b]');

> Read more about shortcodes parsing