Regular Expressions 101

Save & Share

  • Regex Version: ver. 4
  • Update Regex
    ctrl+⇧+s
  • Save new Regex
    ctrl+s
  • Add to Community Library

Flavor

  • PCRE2 (PHP >=7.3)
  • PCRE (PHP <7.3)
  • ECMAScript (JavaScript)
  • Python
  • Golang
  • Java 8
  • .NET 7.0 (C#)
  • Rust
  • Regex Flavor Guide

Function

  • Match
  • Substitution
  • List
  • Unit Tests

Tools

Sponsors
There are currently no sponsors. Become a sponsor today!
An explanation of your regex will be automatically generated as you type.
Detailed match information will be displayed here automatically.
  • All Tokens
  • Common Tokens
  • General Tokens
  • Anchors
  • Meta Sequences
  • Quantifiers
  • Group Constructs
  • Character Classes
  • Flags/Modifiers
  • Substitution
  • A single character of: a, b or c
    [abc]
  • A character except: a, b or c
    [^abc]
  • A character in the range: a-z
    [a-z]
  • A character not in the range: a-z
    [^a-z]
  • A character in the range: a-z or A-Z
    [a-zA-Z]
  • Any single character
    .
  • Alternate - match either a or b
    a|b
  • Any whitespace character
    \s
  • Any non-whitespace character
    \S
  • Any digit
    \d
  • Any non-digit
    \D
  • Any word character
    \w
  • Any non-word character
    \W
  • Non-capturing group
    (?:...)
  • Capturing group
    (...)
  • Zero or one of a
    a?
  • Zero or more of a
    a*
  • One or more of a
    a+
  • Exactly 3 of a
    a{3}
  • 3 or more of a
    a{3,}
  • Between 3 and 6 of a
    a{3,6}
  • Start of string
    ^
  • End of string
    $
  • A word boundary
    \b
  • Non-word boundary
    \B

Regular Expression

/
/
g

Test String

Substitution

Processing...

Code Generator

Generated Code

import java.util.regex.Matcher; import java.util.regex.Pattern; public class Example { public static void main(String[] args) { final String regex = ".+(call_integration_hook\\(\\'(?P<hook>[\\w]+)\\'[, array\\(]*(?P<param>|[^\\)]+)\\)).+"; final String string = "./index.php:137: call_integration_hook('integrate_autoload', array(&$classMap));\n" + "./index.php:244: call_integration_hook('integrate_pre_log_stats', array(&$no_stat_actions));\n" + "./index.php:403: call_integration_hook('integrate_actions', array(&$actionArray));\n" + "./Sources/Admin.php:732: call_integration_hook('integrate_admin_search', array(&$language_files, &$include_files, &$settings_search));\n" + "./Sources/Admin.php:945: call_integration_hook('integrate_manage_logs', array(&$log_functions));\n" + "./Sources/Attachments.php:387: call_integration_hook('integrate_attachment_upload', array());\n" + "./Sources/BoardIndex.php:137: call_integration_hook('integrate_mark_read_button');\n" + "./Sources/Calendar.php:257: call_integration_hook('integrate_calendar_buttons');\n" + "./Sources/Display.php:151: call_integration_hook('integrate_display_topic', array(&$topic_selects, &$topic_tables, &$topic_parameters));\n" + "./Sources/Display.php:860: call_integration_hook('integrate_poll_buttons');\n" + "./Sources/Display.php:1032: call_integration_hook('integrate_display_message_list', array(&$messages, &$posters));\n" + "./Sources/Display.php:1202: call_integration_hook('integrate_query_message', array(&$msg_selects, &$msg_tables, &$msg_parameters));\n" + "./Sources/Display.php:1461: call_integration_hook('integrate_display_buttons', array(&$context['normal_buttons']));\n" + "./Sources/Display.php:1463: call_integration_hook('integrate_mod_buttons', array(&$context['mod_buttons']));\n" + "./Sources/Display.php:1753: call_integration_hook('integrate_prepare_display_context', array(&$output, &$message, $counter));\n" + "./Sources/Errors.php:114: call_integration_hook('integrate_error_types', array(&$other_error_types, &$error_type, $error_message, $file, $line));\n" + "./Sources/Errors.php:298: call_integration_hook('integrate_output_error', array($message, $error_type, $error_level, $file, $line));\n" + "./Sources/Groups.php:62: call_integration_hook('integrate_manage_groups', array(&$subActions));\n" + "./Sources/Help.php:36: call_integration_hook('integrate_manage_help', array(&$subActions));\n" + "./Sources/Help.php:110: call_integration_hook('integrate_helpadmin');\n" + "./Sources/Likes.php:233: $can_like = call_integration_hook('integrate_valid_likes', array($this->_type, $this->_content, $this->_sa, $this->_js, $this->_extra));\n" + "./Sources/Likes.php:306: call_integration_hook('integrate_issue_like_before', array(&$type, &$content, &$user, &$time));\n" + "./Sources/Likes.php:416: call_integration_hook('integrate_issue_like', array($this));\n" + "./Sources/Likes.php:616: call_integration_hook('integrate_likes_json_response', array(&$print));\n" + "./Sources/Load.php:314: call_integration_hook('integrate_load_average', array($modSettings['load_average']));\n" + "./Sources/Load.php:432: call_integration_hook('integrate_pre_load');\n" + "./Sources/Load.php:454: if (count($integration_ids = call_integration_hook('integrate_verify_user')) > 0)\n" + "./Sources/Load.php:555: call_integration_hook('integrate_force_tfasetup', array(&$force_tfasetup));\n" + "./Sources/Load.php:575: $verified = call_integration_hook('integrate_verify_tfa', array($id_member, $user_settings));\n" + "./Sources/Load.php:850: call_integration_hook('integrate_user_info');\n" + "./Sources/Load.php:888: call_integration_hook('integrate_load_min_user_settings_columns', array(&$columns_to_load));\n" + "./Sources/Load.php:939: call_integration_hook('integrate_load_min_user_settings', array(&$user_info_min));\n" + "./Sources/Load.php:1037: call_integration_hook('integrate_load_board', array(&$custom_column_selects, &$custom_column_parameters));\n" + "./Sources/Load.php:1100: call_integration_hook('integrate_board_info', array(&$board_info, $row));\n" + "./Sources/Load.php:1458: call_integration_hook('integrate_load_member_data', array(&$select_columns, &$select_tables, &$set));\n" + "./Sources/Load.php:1803: call_integration_hook('integrate_member_context', array(&$memberContext[$user], $user, $display_custom_fields));\n" + "./Sources/Load.php:1978: call_integration_hook('integrate_pre_load_theme', array(&$id_theme));\n" + "./Sources/Load.php:2328: call_integration_hook('integrate_simple_actions', array(&$simpleActions, &$simpleAreas, &$simpleSubActions, &$extraParams, &$xmlActions));\n" + "./Sources/Load.php:2565: call_integration_hook('integrate_load_theme');\n" + "./Sources/Load.php:3609: if (function_exists('call_integration_hook'))\n" + "./Sources/Load.php:3610: call_integration_hook('pre_cache_quick_get', array(&$key, &$file, &$function, &$params, &$level));\n" + "./Sources/Load.php:3632: if (function_exists('call_integration_hook'))\n" + "./Sources/Load.php:3633: call_integration_hook('post_cache_quick_get', array(&$cache_block));\n" + "./Sources/Load.php:3674: if (function_exists('call_integration_hook'))\n" + "./Sources/Load.php:3675: call_integration_hook('cache_put_data', array(&$key, &$value, &$ttl));\n" + "./Sources/Load.php:3724: if (function_exists('call_integration_hook') && isset($value))\n" + "./Sources/Load.php:3725: call_integration_hook('cache_get_data', array(&$key, &$ttl, &$value));\n" + "./Sources/Load.php:3753: call_integration_hook('integrate_clean_cache');\n" + "./Sources/Load.php:3819: call_integration_hook('integrate_set_avatar_data', array(&$image, &$data));\n" + "./Sources/Logging.php:441: call_integration_hook('integrate_log_types', array(&$log_types, &$always_log));\n" + "./Sources/LogInOut.php:238: if (in_array('retry', call_integration_hook('integrate_validate_login', array($_POST['user'], isset($_POST['passwrd']) ? $_POST['passwrd'] : null, $modSettings['cookieTime'])), true))\n" + "./Sources/LogInOut.php:361: call_integration_hook('integrate_other_passwords', array(&$other_passwords));\n" + "./Sources/LogInOut.php:562: call_integration_hook('integrate_login', array($user_settings['member_name'], null, $modSettings['cookieTime']));\n" + "./Sources/LogInOut.php:667: call_integration_hook('integrate_logout', array($user_settings['member_name']));\n" + "./Sources/ManageAttachments.php:64: call_integration_hook('integrate_manage_attachments', array(&$subActions));\n" + "./Sources/ManageAttachments.php:188: call_integration_hook('integrate_modify_attachment_settings', array(&$config_vars));\n" + "./Sources/ManageAttachments.php:242: call_integration_hook('integrate_save_attachment_settings');\n" + "./Sources/ManageAttachments.php:340: call_integration_hook('integrate_modify_avatar_settings', array(&$config_vars));\n" + "./Sources/ManageAttachments.php:366: call_integration_hook('integrate_save_avatar_settings');\n" + "./Sources/ManageAttachments.php:591: call_integration_hook('integrate_attachments_browse', array(&$listOptions, &$titles, &$list_title));\n" + "./Sources/ManageAttachments.php:894: call_integration_hook('integrate_attachment_remove', array(&$filesRemoved, $attachments));\n" + "./Sources/ManageAttachments.php:1114: call_integration_hook('integrate_remove_attachments', array($attach));\n" + "./Sources/ManageAttachments.php:1534: call_integration_hook('integrate_repair_attachments_nomsg', array(&$ignore_ids, $_GET['substep'], $_GET['substep'] + 500));\n" + "./Sources/ManageAttachments.php:1902: call_integration_hook('integrate_approve_attachments', array($attachments));\n" + "./Sources/ManageBans.php:84: call_integration_hook('integrate_manage_bans', array(&$subActions));\n" + "./Sources/ManageBans.php:518: call_integration_hook('integrate_ban_edit_list', array(&$listOptions));\n" + "./Sources/ManageBans.php:613: call_integration_hook('integrate_ban_edit_new', array());\n" + "./Sources/ManageBans.php:723: call_integration_hook('integrate_ban_list', array(&$ban_items));\n" + "./Sources/ManageBans.php:767: call_integration_hook('integrate_load_addtional_ip_ban', array(&$search_list));\n" + "./Sources/ManageBans.php:871: call_integration_hook('integrate_edit_bans', array(&$ban_info, empty($_REQUEST['bg'])));\n" + "./Sources/ManageBans.php:915: call_integration_hook('integrate_edit_bans_post', array());\n" + "./Sources/ManageBans.php:959: call_integration_hook('integrate_save_triggers', array(&$ban_triggers, &$ban_group));\n" + "./Sources/ManageBans.php:999: call_integration_hook('integrate_remove_triggers', array(&$items_ids, $group_id));\n" + "./Sources/ManageBoards.php:63: call_integration_hook('integrate_manage_boards', array(&$subActions));\n" + "./Sources/ManageBoards.php:203: call_integration_hook('integrate_boards_main');\n" + "./Sources/ManageBoards.php:302: call_integration_hook('integrate_edit_category');\n" + "./Sources/ManageBoards.php:609: call_integration_hook('integrate_edit_board');\n" + "./Sources/ManageBoards.php:863: call_integration_hook('integrate_modify_board_settings', array(&$config_vars));\n" + "./Sources/ManageBoards.php:890: call_integration_hook('integrate_save_board_settings');\n" + "./Sources/ManageCalendar.php:70: call_integration_hook('integrate_manage_calendar', array(&$subActions));\n" + "./Sources/ManageCalendar.php:378: call_integration_hook('integrate_modify_calendar_settings', array(&$config_vars));\n" + "./Sources/ManageCalendar.php:397: call_integration_hook('integrate_save_calendar_settings');\n" + "./Sources/ManageLanguages.php:56: call_integration_hook('integrate_manage_languages', array(&$subActions));\n" + "./Sources/ManageLanguages.php:753: call_integration_hook('integrate_language_settings', array(&$config_vars));\n" + "./Sources/ManageLanguages.php:768: call_integration_hook('integrate_save_language_settings', array(&$config_vars));\n" + "./Sources/ManageLanguages.php:866: call_integration_hook('integrate_modifylanguages', array(&$themes, &$lang_dirs, &$allows_add_remove, &$additional_string_types));\n" + "./Sources/ManageLanguages.php:1099: call_integration_hook('integrate_language_edit_helptext', array(&$special_groups));\n" + "./Sources/ManageMail.php:48: call_integration_hook('integrate_manage_mail', array(&$subActions));\n" + "./Sources/ManageMail.php:328: call_integration_hook('integrate_modify_mail_settings', array(&$config_vars));\n" + "./Sources/ManageMail.php:346: call_integration_hook('integrate_save_mail_settings');\n" + "./Sources/ManageMaintenance.php:95: call_integration_hook('integrate_manage_maintenance', array(&$subActions));\n" + "./Sources/ManageMaintenance.php:371: call_integration_hook('integrate_convert_msgbody', array($body_type));\n" + "./Sources/ManageMembergroups.php:63: call_integration_hook('integrate_manage_membergroups', array(&$subActions));\n" + "./Sources/ManageMembergroups.php:312: call_integration_hook('integrate_pre_add_membergroup', array());\n" + "./Sources/ManageMembergroups.php:328: call_integration_hook('integrate_add_membergroup', array($id_group, $postCountBasedGroup));\n" + "./Sources/ManageMembergroups.php:773: call_integration_hook('integrate_save_membergroup', array((int) $_REQUEST['group']));\n" + "./Sources/ManageMembergroups.php:1217: call_integration_hook('integrate_view_membergroup');\n" + "./Sources/ManageMembergroups.php:1248: call_integration_hook('integrate_modify_membergroup_settings', array(&$config_vars));\n" + "./Sources/ManageMembergroups.php:1253: call_integration_hook('integrate_save_membergroup_settings');\n" + "./Sources/ManageMembers.php:100: call_integration_hook('integrate_manage_members', array(&$subActions));\n" + "./Sources/ManageMembers.php:260: call_integration_hook('integrate_view_members_params', array(&$params));\n" + "./Sources/ManageMembers.php:1122: call_integration_hook('integrate_activate', array($member['username']));\n" + "./Sources/ManageNews.php:44: call_integration_hook('integrate_manage_news', array(&$subActions));\n" + "./Sources/ManageNews.php:1101: call_integration_hook('integrate_modify_news_settings', array(&$config_vars));\n" + "./Sources/ManageNews.php:1124: call_integration_hook('integrate_save_news_settings');\n" + "./Sources/ManagePaid.php:72: call_integration_hook('integrate_manage_subscriptions', array(&$subActions));\n" + "./Sources/ManagePaid.php:557: call_integration_hook('integrate_delete_subscription', array($context['sub_id']));\n" + "./Sources/ManagePaid.php:689: call_integration_hook('integrate_save_subscription', array(($context['action_type'] == 'add' ? $id_subscribe : $context['sub_id']), $_POST['name'], $_POST['desc'], $isActive, $span, $cost, $_POST['prim_group'], $addgroups, $isRepeatable, $allowpartial, $emailComplete, $reminder));\n" + "./Sources/ManagePermissions.php:74: call_integration_hook('integrate_manage_permissions', array(&$subActions));\n" + "./Sources/ManagePermissions.php:1007: call_integration_hook('integrate_modify_permission_settings', array(&$config_vars));\n" + "./Sources/ManagePermissions.php:1024: call_integration_hook('integrate_save_permission_settings');\n" + "./Sources/ManagePermissions.php:1266: call_integration_hook('integrate_load_permission_levels', array(&$groupLevels, &$boardLevels));\n" + "./Sources/ManagePermissions.php:1633: call_integration_hook('integrate_load_permissions', array(&$permissionGroups, &$permissionList, &$leftPermissionGroups, &$hiddenPermissions, &$relabelPermissions));\n" + "./Sources/ManagePermissions.php:2289: call_integration_hook('integrate_load_illegal_permissions');\n" + "./Sources/ManagePermissions.php:2358: call_integration_hook('integrate_load_illegal_guest_permissions');\n" + "./Sources/ManagePermissions.php:2463: call_integration_hook('integrate_post_moderation_mapping', array(&$mappings));\n" + "./Sources/ManagePosts.php:68: call_integration_hook('integrate_manage_posts', array(&$subActions));\n" + "./Sources/ManagePosts.php:133: call_integration_hook('integrate_save_censors', array(&$updates));\n" + "./Sources/ManagePosts.php:164: call_integration_hook('integrate_censors');\n" + "./Sources/ManagePosts.php:230: call_integration_hook('integrate_modify_post_settings', array(&$config_vars));\n" + "./Sources/ManagePosts.php:265: call_integration_hook('integrate_save_post_settings');\n" + "./Sources/ManagePosts.php:326: call_integration_hook('integrate_modify_topic_settings', array(&$config_vars));\n" + "./Sources/ManagePosts.php:342: call_integration_hook('integrate_save_topic_settings');\n" + "./Sources/ManageRegistration.php:79: call_integration_hook('integrate_manage_registrations', array(&$subActions));\n" + "./Sources/ManageRegistration.php:344: call_integration_hook('integrate_modify_registration_settings', array(&$config_vars));\n" + "./Sources/ManageRegistration.php:364: call_integration_hook('integrate_save_registration_settings');\n" + "./Sources/ManageScheduledTasks.php:67: call_integration_hook('integrate_manage_scheduled_tasks', array(&$subActions));\n" + "./Sources/ManageScheduledTasks.php:657: call_integration_hook('integrate_scheduled_tasks_settings', array(&$config_vars));\n" + "./Sources/ManageScheduledTasks.php:676: call_integration_hook('integrate_save_scheduled_tasks_settings', array(&$save_vars));\n" + "./Sources/ManageSearch.php:74: call_integration_hook('integrate_manage_search', array(&$subActions));\n" + "./Sources/ManageSearch.php:106: call_integration_hook('integrate_modify_search_settings', array(&$config_vars));\n" + "./Sources/ManageSearch.php:128: call_integration_hook('integrate_save_search_settings');\n" + "./Sources/ManageSearch.php:170: call_integration_hook('integrate_modify_search_weights', array(&$factors));\n" + "./Sources/ManageSearch.php:178: call_integration_hook('integrate_save_search_weights');\n" + "./Sources/ManageSearchEngines.php:61: call_integration_hook('integrate_manage_search_engines', array(&$subActions));\n" + "./Sources/ManageSearchEngines.php:103: call_integration_hook('integrate_modify_search_engine_settings', array(&$config_vars));\n" + "./Sources/ManageSearchEngines.php:139: call_integration_hook('integrate_save_search_engine_settings');\n" + "./Sources/ManageServer.php:130: call_integration_hook('integrate_server_settings', array(&$subActions));\n" + "./Sources/ManageServer.php:184: call_integration_hook('integrate_general_settings', array(&$config_vars));\n" + "./Sources/ManageServer.php:196: call_integration_hook('integrate_save_general_settings');\n" + "./Sources/ManageServer.php:425: call_integration_hook('integrate_database_settings', array(&$config_vars));\n" + "./Sources/ManageServer.php:445: call_integration_hook('integrate_save_database_settings');\n" + "./Sources/ManageServer.php:519: call_integration_hook('integrate_cookie_settings', array(&$config_vars));\n" + "./Sources/ManageServer.php:530: call_integration_hook('integrate_save_cookie_settings');\n" + "./Sources/ManageServer.php:654: call_integration_hook('integrate_general_security_settings', array(&$config_vars));\n" + "./Sources/ManageServer.php:665: call_integration_hook('integrate_save_general_security_settings');\n" + "./Sources/ManageServer.php:719: call_integration_hook('integrate_modify_cache_settings', array(&$config_vars));\n" + "./Sources/ManageServer.php:742: call_integration_hook('integrate_save_cache_settings');\n" + "./Sources/ManageServer.php:803: call_integration_hook('integrate_export_settings', array(&$config_vars));\n" + "./Sources/ManageServer.php:840: call_integration_hook('integrate_save_export_settings');\n" + "./Sources/ManageServer.php:920: call_integration_hook('integrate_loadavg_settings', array(&$config_vars));\n" + "./Sources/ManageServer.php:947: call_integration_hook('integrate_save_loadavg_settings');\n" + "./Sources/ManageServer.php:1308: call_integration_hook('integrate_prepare_db_settings', array(&$config_vars));\n" + "./Sources/ManageSettings.php:100: call_integration_hook('integrate_modify_features', array(&$subActions));\n" + "./Sources/ManageSettings.php:137: call_integration_hook('integrate_modify_modifications', array(&$subActions));\n" + "./Sources/ManageSettings.php:257: call_integration_hook('integrate_modify_basic_settings', array(&$config_vars));\n" + "./Sources/ManageSettings.php:271: call_integration_hook('integrate_save_basic_settings');\n" + "./Sources/ManageSettings.php:328: call_integration_hook('integrate_modify_bbc_settings', array(&$config_vars));\n" + "./Sources/ManageSettings.php:383: call_integration_hook('integrate_save_bbc_settings', array($bbcTags));\n" + "./Sources/ManageSettings.php:428: call_integration_hook('integrate_layout_settings', array(&$config_vars));\n" + "./Sources/ManageSettings.php:438: call_integration_hook('integrate_save_layout_settings');\n" + "./Sources/ManageSettings.php:469: call_integration_hook('integrate_likes_settings', array(&$config_vars));\n" + "./Sources/ManageSettings.php:479: call_integration_hook('integrate_save_likes_settings');\n" + "./Sources/ManageSettings.php:508: call_integration_hook('integrate_mentions_settings', array(&$config_vars));\n" + "./Sources/ManageSettings.php:518: call_integration_hook('integrate_save_mentions_settings');\n" + "./Sources/ManageSettings.php:588: call_integration_hook('integrate_warning_settings', array(&$config_vars));\n" + "./Sources/ManageSettings.php:646: call_integration_hook('integrate_save_warning_settings', array(&$save_vars));\n" + "./Sources/ManageSettings.php:740: call_integration_hook('integrate_spam_settings', array(&$config_vars));\n" + "./Sources/ManageSettings.php:953: call_integration_hook('integrate_save_spam_settings', array(&$save_vars));\n" + "./Sources/ManageSettings.php:1043: call_integration_hook('integrate_signature_settings', array(&$config_vars));\n" + "./Sources/ManageSettings.php:1264: call_integration_hook('integrate_apply_signature_settings', array(&$sig, $sig_limits, $disabledTags));\n" + "./Sources/ManageSettings.php:1339: call_integration_hook('integrate_save_signature_settings', array(&$sig_limits, &$bbcTags));\n" + "./Sources/ManageSettings.php:2270: call_integration_hook('integrate_prune_settings', array(&$config_vars, &$prune_toggle, false));\n" + "./Sources/ManageSettings.php:2307: call_integration_hook('integrate_prune_settings', array(&$savevar, &$prune_toggle, true));\n" + "./Sources/ManageSettings.php:2357: call_integration_hook('integrate_general_mod_settings', array(&$config_vars));\n" + "./Sources/ManageSettings.php:2385: call_integration_hook('integrate_save_general_mod_settings', array(&$save_vars));\n" + "./Sources/ManageSmileys.php:103: call_integration_hook('integrate_manage_smileys', array(&$subActions));\n" + "./Sources/ManageSmileys.php:151: call_integration_hook('integrate_modify_smiley_settings', array(&$config_vars));\n" + "./Sources/ManageSmileys.php:171: call_integration_hook('integrate_save_smiley_settings');\n" + "./Sources/Memberlist.php:146: call_integration_hook('integrate_memberlist_buttons');\n" + "./Sources/Mentions.php:87: call_integration_hook('mention_insert_' . $content_type, array($content_id, &$members));\n" + "./Sources/MessageIndex.php:116: call_integration_hook('integrate_pre_messageindex', array(&$sort_methods, &$sort_methods_table));\n" + "./Sources/MessageIndex.php:318: call_integration_hook('integrate_message_index', array(&$message_index_selects, &$message_index_tables, &$message_index_parameters, &$message_index_wheres, &$topic_ids, &$message_index_topic_wheres));\n" + "./Sources/MessageIndex.php:607: call_integration_hook('integrate_quick_mod_actions');\n" + "./Sources/MessageIndex.php:738: call_integration_hook('integrate_messageindex_buttons', array(&$context['normal_buttons']));\n" + "./Sources/ModerationCenter.php:278: call_integration_hook('integrate_mod_centre_blocks', array(&$valid_blocks));\n" + "./Sources/ModerationCenter.php:1392: call_integration_hook('integrate_warning_log_actions', array(&$subActions));\n" + "./Sources/Modlog.php:300: call_integration_hook('integrate_viewModLog', array(&$listOptions, &$moderation_menu_name));\n" + "./Sources/MoveTopic.php:359: call_integration_hook('integrate_movetopic2_end');\n" + "./Sources/News.php:58: call_integration_hook('integrate_xmlfeeds', array(&$subActions));\n" + "./Sources/News.php:349: call_integration_hook('integrate_xml_data', array(&$xml_data, &$feed_meta, &$namespaces, &$extraFeedTags, &$forceCdataKeys, &$nsKeys, $xml_format, $subaction, &$doctype));\n" + "./Sources/News.php:524: call_integration_hook('integrate_fix_url', array(&$val));\n" + "./Sources/PackageGet.php:77: call_integration_hook('integrate_package_get', array(&$subActions));\n" + "./Sources/PackageGet.php:639: call_integration_hook('integrate_package_download');\n" + "./Sources/PackageGet.php:729: call_integration_hook('integrate_package_upload');\n" + "./Sources/Packages.php:88: call_integration_hook('integrate_manage_packages', array(&$subActions));\n" + "./Sources/Packages.php:1390: call_integration_hook('integrate_modification_types');\n" + "./Sources/Packages.php:1605: call_integration_hook('integrate_packages_sort_id', array(&$sort_id, &$packages));\n" + "./Sources/PersonalMessage.php:940: call_integration_hook('integrate_conversation_buttons');\n" + "./Sources/PersonalMessage.php:1101: call_integration_hook('integrate_prepare_pm_context', array(&$output, &$message, $counter));\n" + "./Sources/PersonalMessage.php:1793: call_integration_hook('integrate_search_pm_context');\n" + "./Sources/PersonalMessage.php:2088: call_integration_hook('integrate_pm_post');\n" + "./Sources/PersonalMessage.php:2288: call_integration_hook('integrate_pm_error');\n" + "./Sources/Poll.php:219: call_integration_hook('integrate_poll_vote', array(&$row['id_poll'], &$pollOptions));\n" + "./Sources/Poll.php:888: call_integration_hook('integrate_poll_add_edit', array($bcinfo['id_poll'], $isEdit));\n" + "./Sources/Poll.php:1002: call_integration_hook('integrate_poll_remove', array($pollID));\n" + "./Sources/Post.php:49: call_integration_hook('integrate_post_start');\n" + "./Sources/Post.php:556: call_integration_hook('integrate_preview_post', array(&$form_message, &$form_subject));\n" + "./Sources/Post.php:1067: call_integration_hook('integrate_post_errors', array(&$post_errors, &$minor_errors, $form_message, $form_subject));\n" + "./Sources/Post.php:1532: call_integration_hook('integrate_post_end');\n" + "./Sources/Post.php:1587: call_integration_hook('integrate_post2_start', array(&$post_errors));\n" + "./Sources/Post.php:2048: call_integration_hook('integrate_post2_pre', array(&$post_errors));\n" + "./Sources/Post.php:2242: call_integration_hook('integrate_poll_add_edit', array($id_poll, false));\n" + "./Sources/Post.php:2464: call_integration_hook('integrate_post2_end');\n" + "./Sources/Post.php:2789: call_integration_hook('integrate_getTopic_previous_post', array(&$row));\n" + "./Sources/Post.php:3026: call_integration_hook('integrate_post_JavascriptModify', array(&$post_errors, $row));\n" + "./Sources/Post.php:3197: call_integration_hook('integrate_jsmodify_xml');\n" + "./Sources/PostModeration.php:45: call_integration_hook('integrate_post_moderation', array(&$subActions));\n" + "./Sources/Profile-Actions.php:41: call_integration_hook('integrate_activate', array($user_profile[$memID]['member_name']));\n" + "./Sources/Profile-Export.php:875: call_integration_hook('integrate_export_xslt_variables', array(&$xslt_variables, $format));\n" + "./Sources/Profile-Export.php:1760: call_integration_hook('integrate_export_xslt_stylesheet', array(&$stylesheet, $format));\n" + "./Sources/Profile-Export.php:1823: call_integration_hook('integrate_pre_css_output');\n" + "./Sources/Profile-Export.php:1861: call_integration_hook('integrate_pre_javascript_output', array(false));\n" + "./Sources/Profile-Export.php:1862: call_integration_hook('integrate_pre_javascript_output', array(true));\n" + "./Sources/Profile-Modify.php:299: call_integration_hook('integrate_reset_pass', array($cur_profile['member_name'], $value, $_POST['passwrd1']));\n" + "./Sources/Profile-Modify.php:659: call_integration_hook('integrate_load_profile_fields', array(&$profile_fields));\n" + "./Sources/Profile-Modify.php:694: call_integration_hook('integrate_setup_profile_context', array(&$fields));\n" + "./Sources/Profile-Modify.php:1335: $hook_errors = call_integration_hook('integrate_save_custom_profile_fields', array(&$changes, &$log_changes, &$errors, $returnErrors, $memID, $area, $sanitize, &$deletes));\n" + "./Sources/Profile-Modify.php:1436: call_integration_hook('integrate_remove_buddy', array($memID));\n" + "./Sources/Profile-Modify.php:1472: call_integration_hook('integrate_add_buddies', array($memID, &$new_buddies));\n" + "./Sources/Profile-Modify.php:1613: call_integration_hook('integrate_view_buddies', array($memID));\n" + "./Sources/Profile-Modify.php:1902: call_integration_hook('integrate_theme_options');\n" + "./Sources/Profile-Modify.php:2083: call_integration_hook('integrate_alert_types', array(&$alert_types, &$group_options));\n" + "./Sources/Profile-Modify.php:3356: call_integration_hook('integrate_profile_profileSaveGroups', array($value, $additional_groups));\n" + "./Sources/Profile-Modify.php:3381: call_integration_hook('before_profile_save_avatar', array(&$value));\n" + "./Sources/Profile-Modify.php:3643: call_integration_hook('after_profile_save_avatar');\n" + "./Sources/Profile-View.php:359: call_integration_hook('integrate_fetch_alerts', array(&$alerts, &$formats));\n" + "./Sources/Profile-View.php:1156: call_integration_hook('integrate_profile_showPosts');\n" + "./Sources/Profile-View.php:1830: call_integration_hook('integrate_profile_stats', array($memID, &$context['text_stats']));\n" + "./Sources/Profile-View.php:2504: call_integration_hook('integrate_profile_trackip', array($ip_string, $ip_var));\n" + "./Sources/Profile.php:493: call_integration_hook('integrate_pre_profile_areas', array(&$profile_areas));\n" + "./Sources/Profile.php:680: $good_password = in_array(true, call_integration_hook('integrate_verify_password', array($cur_profile['member_name'], $password, false)), true);\n" + "./Sources/Profile.php:734: call_integration_hook('integrate_profile_save', array(&$profile_vars, &$post_errors, $memID, $cur_profile, $current_area));\n" + "./Sources/Profile.php:747: call_integration_hook('integrate_reset_pass', array($cur_profile['member_name'], $cur_profile['member_name'], $_POST['passwrd2']));\n" + "./Sources/Profile.php:890: call_integration_hook('integrate_profile_popup', array(&$profile_items));\n" + "./Sources/Profile.php:1085: call_integration_hook('integrate_load_custom_profile_fields', array($memID, $area));\n" + "./Sources/Recent.php:492: call_integration_hook('integrate_recent_RecentPosts');\n" + "./Sources/Recent.php:1465: call_integration_hook('integrate_recent_buttons');\n" + "./Sources/Recent.php:1470: call_integration_hook('integrate_unread_list');\n" + "./Sources/Register.php:583: call_integration_hook('integrate_activate', array($regOptions['username']));\n" + "./Sources/Register.php:725: call_integration_hook('integrate_activate', array($row['member_name']));\n" + "./Sources/Reminder.php:270: call_integration_hook('integrate_reset_pass', array($username, $username, $_POST['passwrd1']));\n" + "./Sources/Reminder.php:397: call_integration_hook('integrate_reset_pass', array($row['member_name'], $row['member_name'], $_POST['passwrd1']));\n" + "./Sources/RemoveTopic.php:259: call_integration_hook('integrate_remove_topics_before', array($topics, $recycle_board));\n" + "./Sources/RemoveTopic.php:564: call_integration_hook('integrate_remove_topics', array($topics));\n" + "./Sources/RemoveTopic.php:993: call_integration_hook('integrate_remove_message', array($message, $row, $recycle));\n" + "./Sources/ReportedContent.php:70: call_integration_hook('integrate_reported_' . $context['report_type'], array(&$subActions));\n" + "./Sources/Reports.php:63: call_integration_hook('integrate_report_types');\n" + "./Sources/Reports.php:119: call_integration_hook('integrate_report_buttons');\n" + "./Sources/Reports.php:394: call_integration_hook('integrate_reports_boardperm', array(&$disabled_permissions));\n" + "./Sources/Reports.php:691: call_integration_hook('integrate_reports_groupperm', array(&$disabled_permissions));\n" + "./Sources/ScheduledTasks.php:282: call_integration_hook('integrate_daily_maintenance');\n" + "./Sources/ScheduledTasks.php:451: call_integration_hook('integrate_daily_digest_lang', array(&$langtxt, $lang));\n" + "./Sources/ScheduledTasks.php:541: call_integration_hook('integrate_daily_digest_email', array(&$email, $types, $notify_types, $langtxt));\n" + "./Sources/ScheduledTasks.php:1322: call_integration_hook('integrate_weekly_maintenance');\n" + "./Sources/Search.php:230: call_integration_hook('integrate_search');\n" + "./Sources/Search.php:290: call_integration_hook('integrate_search_weights', array(&$weight_factors));\n" + "./Sources/Search.php:618: call_integration_hook('integrate_search_sort_columns', array(&$sort_columns));\n" + "./Sources/Search.php:641: call_integration_hook('integrate_search_params', array(&$search_params));\n" + "./Sources/Search.php:651: call_integration_hook('integrate_search_blacklisted_words', array(&$blacklisted_words));\n" + "./Sources/Search.php:1016: call_integration_hook('integrate_search_errors');\n" + "./Sources/Search.php:1178: call_integration_hook('integrate_subject_only_search_query', array(&$subject_query, &$subject_query_params));\n" + "./Sources/Search.php:1428: call_integration_hook('integrate_subject_search_query', array(&$subject_query));\n" + "./Sources/Search.php:1644: call_integration_hook('integrate_main_search_query', array(&$main_query));\n" + "./Sources/Search.php:1886: call_integration_hook('integrate_search_message_list', array(&$msg_list, &$posters));\n" + "./Sources/Search.php:2222: call_integration_hook('integrate_quick_mod_actions_search');\n" + "./Sources/Search.php:2247: call_integration_hook('integrate_search_message_context', array(&$output, &$message, $counter));\n" + "./Sources/Security.php:39: call_integration_hook('integrate_validateSession', array(&$types));\n" + "./Sources/Security.php:67: $good_password = in_array(true, call_integration_hook('integrate_verify_password', array($user_info['username'], $_POST[$type . '_pass'], false)), true);\n" + "./Sources/Security.php:438: call_integration_hook('integrate_post_ban_permissions', array(&$denied_permissions));\n" + "./Sources/Security.php:451: call_integration_hook('integrate_warn_permissions', array(&$permission_change));\n" + "./Sources/Security.php:1008: call_integration_hook('integrate_heavy_permissions_session', array(&$heavy_permissions));\n" + "./Sources/Security.php:1166: call_integration_hook('integrate_spam_protection', array(&$timeOverrides));\n" + "./Sources/Session.php:38: call_integration_hook('integrate_load_session');\n" + "./Sources/Session.php:79: call_integration_hook('integrate_session_handlers');\n" + "./Sources/ShowAttachments.php:36: call_integration_hook('integrate_pre_download_request');\n" + "./Sources/ShowAttachments.php:87: call_integration_hook('integrate_download_request', array(&$attachRequest));\n" + "./Sources/SplitTopics.php:813: call_integration_hook('integrate_split_topic', array($split1, $split2, $new_subject, $id_board));\n" + "./Sources/SplitTopics.php:1764: call_integration_hook('integrate_merge_topic', array($merged_topic, $updated_topics, $deleted_topics, $deleted_polls));\n" + "./Sources/Stats.php:696: call_integration_hook('integrate_forum_stats');\n" + "./Sources/Subs-Admin.php:904: if (function_exists('call_integration_hook'))\n" + "./Sources/Subs-Admin.php:905: call_integration_hook('integrate_update_settings_file', array(&$settings_defs));\n" + "./Sources/Subs-Attachments.php:476: call_integration_hook('integrate_attachment_upload', array());\n" + "./Sources/Subs-Attachments.php:714: call_integration_hook('integrate_createAttachment', array(&$attachmentOptions, &$attachmentInserts));\n" + "./Sources/Subs-Attachments.php:903: call_integration_hook('integrate_assign_attachments', array(&$attachIDs, &$msgID));\n" + "./Sources/Subs-Attachments.php:946: $externalParse = call_integration_hook('integrate_pre_parseAttachBBC', array($attachID, $msgID));\n" + "./Sources/Subs-Attachments.php:1032: call_integration_hook('integrate_post_parseAttachBBC', array(&$attachContext));\n" + "./Sources/Subs-Auth.php:77: call_integration_hook('integrate_cookie_data', array($data, &$custom_data));\n" + "./Sources/Subs-Auth.php:267: call_integration_hook('integrate_validateSession', array(&$types));\n" + "./Sources/Subs-Auth.php:635: call_integration_hook('integrate_reset_pass', array($old_user, $user, $newPassword));\n" + "./Sources/Subs-Auth.php:830: call_integration_hook('integrate_mod_cache');\n" + "./Sources/Subs-Auth.php:860: call_integration_hook('integrate_cookie', array($name, $value, $expire, $path, $domain, $secure, $httponly));\n" + "./Sources/Subs-BoardIndex.php:70: call_integration_hook('integrate_pre_boardindex', array(&$board_index_selects, &$board_index_parameters));\n" + "./Sources/Subs-BoardIndex.php:237: call_integration_hook('integrate_boardindex_board', array(&$this_category, $row_board));\n" + "./Sources/Subs-BoardIndex.php:484: call_integration_hook('integrate_getboardtree', array($board_index_options, &$categories));\n" + "./Sources/Subs-BoardIndex.php:486: call_integration_hook('integrate_getboardtree', array($board_index_options, &$this_category));\n" + "./Sources/Subs-Boards.php:466: call_integration_hook('integrate_pre_modify_board', array($id, &$boardOptions));\n" + "./Sources/Subs-Boards.php:646: call_integration_hook('integrate_modify_board', array($id, $boardOptions, &$boardUpdates, &$boardUpdateParameters));\n" + "./Sources/Subs-Boards.php:888: call_integration_hook('integrate_create_board', array(&$boardOptions, &$board_columns, &$board_parameters));\n" + "./Sources/Subs-Boards.php:981: call_integration_hook('integrate_delete_board', array($boards_to_remove, &$moveChildrenTo));\n" + "./Sources/Subs-Boards.php:1389: call_integration_hook('integrate_pre_boardtree', array(&$boardColumns, &$boardParameters, &$boardJoins, &$boardWhere, &$boardOrder));\n" + "./Sources/Subs-Boards.php:1496: call_integration_hook('integrate_boardtree_board', array($row));\n" + "./Sources/Subs-Calendar.php:1197: call_integration_hook('integrate_create_event', array(&$eventOptions, &$event_columns, &$event_parameters));\n" + "./Sources/Subs-Calendar.php:1278: call_integration_hook('integrate_modify_event', array($event_id, &$eventOptions, &$event_columns, &$event_parameters));\n" + "./Sources/Subs-Calendar.php:1333: call_integration_hook('integrate_remove_event', array($event_id));\n" + "./Sources/Subs-Categories.php:35: call_integration_hook('integrate_pre_modify_category', array($cat_id, &$catOptions));\n" + "./Sources/Subs-Categories.php:104: call_integration_hook('integrate_modify_category', array($cat_id, &$catUpdates, &$catParameters));\n" + "./Sources/Subs-Categories.php:160: call_integration_hook('integrate_create_category', array(&$catOptions, &$cat_columns, &$cat_parameters));\n" + "./Sources/Subs-Categories.php:199: call_integration_hook('integrate_delete_category', array($categories, &$moveBoardsTo));\n" + "./Sources/Subs-Editor.php:1496: call_integration_hook('integrate_load_message_icons', array(&$icons));\n" + "./Sources/Subs-Editor.php:1767: call_integration_hook('integrate_bbc_buttons', array(&$context['bbc_tags'], &$editor_tag_map));\n" + "./Sources/Subs-Editor.php:1974: call_integration_hook('integrate_sceditor_options', array(&$sce_options));\n" + "./Sources/Subs-Editor.php:2027: call_integration_hook('integrate_create_control_verification_pre', array(&$verificationOptions, $do_test));\n" + "./Sources/Subs-Editor.php:2161: call_integration_hook('integrate_create_control_verification_test', array($thisVerification, &$verification_errors));\n" + "./Sources/Subs-Editor.php:2236: call_integration_hook('integrate_create_control_verification_refresh', array($thisVerification));\n" + "./Sources/Subs-Editor.php:2275: call_integration_hook('integrate_create_control_verification_post', array(&$verification_errors, $do_test));\n" + "./Sources/Subs-Editor.php:2305: call_integration_hook('integrate_autosuggest', array(&$searchTypes));\n" + "./Sources/Subs-List.php:40: call_integration_hook('integrate_' . $listOptions['id'], array(&$listOptions));\n" + "./Sources/Subs-Membergroups.php:109: call_integration_hook('integrate_delete_membergroups', array($groups));\n" + "./Sources/Subs-Membergroups.php:601: call_integration_hook('integrate_add_members_to_group', array($members, $group, &$group_names));\n" + "./Sources/Subs-Membergroups.php:682: call_integration_hook('integrate_getMembergroupList', array(&$groupCache, $group));\n" + "./Sources/Subs-Members.php:412: call_integration_hook('integrate_delete_members', array($users));\n" + "./Sources/Subs-Members.php:540: call_integration_hook('integrate_register_check', array(&$regOptions, &$reg_errors));\n" + "./Sources/Subs-Members.php:691: call_integration_hook('integrate_register', array(&$regOptions, &$theme_vars, &$knownInts, &$knownFloats));\n" + "./Sources/Subs-Members.php:721: call_integration_hook('integrate_post_register', array(&$regOptions, &$theme_vars, &$memberID));\n" + "./Sources/Subs-Members.php:846: call_integration_hook('integrate_register_after', array($regOptions, $memberID));\n" + "./Sources/Subs-Members.php:957: call_integration_hook('integrate_check_name', array($checkName, &$is_reserved, $current_id_member, $is_name));\n" + "./Sources/Subs-Members.php:1265: call_integration_hook('integrate_reattribute_posts', array($memID, $email, $membername, $post_count, &$updated));\n" + "./Sources/Subs-Menu.php:75: call_integration_hook('integrate_' . $menu_context['current_action'] . '_areas', array(&$menuData));\n" + "./Sources/Subs-Post.php:262: call_integration_hook('integrate_preparsecode', array(&$message, $previewing));\n" + "./Sources/Subs-Post.php:275: call_integration_hook('integrate_unpreparsecode', array(&$message));\n" + "./Sources/Subs-Post.php:592: if (in_array(false, call_integration_hook('integrate_outgoing_email', array(&$subject, &$message, &$headers, &$to_array)), true))\n" + "./Sources/Subs-Post.php:856: call_integration_hook('integrate_personal_message', array(&$recipients, &$from, &$subject, &$message));\n" + "./Sources/Subs-Post.php:1197: call_integration_hook('integrate_personal_message_after', array(&$id_pm, &$log, &$recipients, &$from, &$subject, &$message));\n" + "./Sources/Subs-Post.php:1809: call_integration_hook('integrate_create_post', array(&$msgOptions, &$topicOptions, &$posterOptions, &$message_columns, &$message_parameters));\n" + "./Sources/Subs-Post.php:1837: call_integration_hook('integrate_after_create_post', array($msgOptions, $topicOptions, $posterOptions, $message_columns, $message_parameters));\n" + "./Sources/Subs-Post.php:1855: call_integration_hook('integrate_before_create_topic', array(&$msgOptions, &$topicOptions, &$posterOptions, &$topic_columns, &$topic_parameters));\n" + "./Sources/Subs-Post.php:1898: call_integration_hook('integrate_create_topic', array(&$msgOptions, &$topicOptions, &$posterOptions));\n" + "./Sources/Subs-Post.php:1926: call_integration_hook('integrate_modify_topic', array(&$topics_columns, &$update_parameters, &$msgOptions, &$topicOptions, &$posterOptions));\n" + "./Sources/Subs-Post.php:2210: call_integration_hook('integrate_modify_post', array(&$messages_columns, &$update_parameters, &$msgOptions, &$topicOptions, &$posterOptions, &$messageInts));\n" + "./Sources/Subs-Post.php:2559: call_integration_hook('integrate_after_approve_posts', array($approve, $msgs, $topic_changes, $member_post_changes));\n" + "./Sources/Subs-Themes.php:50: call_integration_hook('integrate_get_single_theme', array(&$themeValues, $id));\n" + "./Sources/Subs-Themes.php:124: call_integration_hook('integrate_get_all_themes', array(&$themeValues, $enable_only));\n" + "./Sources/Subs-Themes.php:193: call_integration_hook('integrate_get_installed_themes', array(&$themeValues));\n" + "./Sources/Subs-Themes.php:468: call_integration_hook('integrate_theme_install', array(&$context['to_install'], $id_theme));\n" + "./Sources/Subs.php:344: call_integration_hook('integrate_change_member_data', array($member_names, $var, &$data[$var], &$knownInts, &$knownFloats));\n" + "./Sources/Subs.php:1246: call_integration_hook('integrate_pre_parsebbc', array(&$message, &$smileys, &$cache_id, &$parse_tags));\n" + "./Sources/Subs.php:1491: call_integration_hook('integrate_attach_bbc_validate', array(&$returnContext, $currentAttachment, $tag, $data, $disabled, $params));\n" + "./Sources/Subs.php:2132: call_integration_hook('integrate_bbc_codes', array(&$codes, &$no_autolink_tags));\n" + "./Sources/Subs.php:2250: call_integration_hook('integrate_bbc_print', array(&$disabled));\n" + "./Sources/Subs.php:3168: call_integration_hook('integrate_post_parsebbc', array(&$message, &$smileys, &$cache_id, &$parse_tags));\n" + "./Sources/Subs.php:3207: call_integration_hook('integrate_smileys', array(&$smileyPregSearch, &$smileyPregReplacements));\n" + "./Sources/Subs.php:3346: call_integration_hook('integrate_proxy', array($url, &$proxied_url));\n" + "./Sources/Subs.php:3397: call_integration_hook('integrate_redirect', array(&$setLocation, &$refresh, &$permanent));\n" + "./Sources/Subs.php:3504: call_integration_hook('integrate_exit', array($do_footer));\n" + "./Sources/Subs.php:3782: call_integration_hook('integrate_theme_context');\n" + "./Sources/Subs.php:3899: call_integration_hook('integrate_security_files', array(&$securityFiles));\n" + "./Sources/Subs.php:4021: call_integration_hook('integrate_pre_javascript_output', array(&$do_deferred));\n" + "./Sources/Subs.php:4154: call_integration_hook('integrate_pre_css_output');\n" + "./Sources/Subs.php:4867: call_integration_hook('integrate_menu_buttons', array(&$buttons));\n" + "./Sources/Subs.php:5016: call_integration_hook('integrate_current_action', array(&$current_action));\n" + "./Sources/Subs.php:5039:function call_integration_hook($hook, $parameters = array())\n" + "./Sources/tasks/Likes-Notify.php:64: $hook_results = call_integration_hook('integrate_find_like_author', array($this->_details['content_type'], $this->_details['content_id']));\n" + "./Sources/Themes.php:100: call_integration_hook('integrate_manage_themes', array(&$subActions));\n" + "./Sources/Themes.php:563: call_integration_hook('integrate_theme_options');\n" + "./Sources/Themes.php:694: call_integration_hook('integrate_theme_settings');\n" + "./Sources/Themes.php:1498: call_integration_hook('integrate_wrap_action');\n" + "./Sources/ViewQuery.php:50: call_integration_hook('integrate_egg_nog');\n" + "./Sources/Who.php:315: call_integration_hook('who_allowed', array(&$allowedActions));\n" + "./Sources/Who.php:465: if (count($integrate_actions = call_integration_hook('integrate_whos_online', array($actions))) > 0)\n" + "./Sources/Who.php:560: call_integration_hook('whos_online_after', array(&$urls, &$data));\n" + "./Sources/Who.php:893: call_integration_hook('integrate_credits');\n" + "./Sources/Xml.php:33: call_integration_hook('integrate_XMLhttpMain_subActions', array(&$subActions));\n" + "./SSI.php:132: call_integration_hook('integrate_autoload', array(&$classMap));\n" + "./SSI.php:234:call_integration_hook('integrate_SSI');\n" + "./SSI.php:568: call_integration_hook('integrate_ssi_queryPosts', array(&$posts));\n" + "./SSI.php:737: call_integration_hook('integrate_ssi_recentTopics', array(&$posts));\n" + "./SSI.php:796: call_integration_hook('integrate_ssi_topPoster', array(&$return));\n" + "./SSI.php:851: call_integration_hook('integrate_ssi_topBoards', array(&$boards));\n" + "./SSI.php:946: call_integration_hook('integrate_ssi_topTopics', array(&$topics, $type));\n" + "./SSI.php:1153: call_integration_hook('integrate_ssi_queryMembers', array(&$members));\n" + "./SSI.php:1232: call_integration_hook('integrate_ssi_boardStats', array(&$totals));\n" + "./SSI.php:1262: call_integration_hook('integrate_ssi_whosOnline', array(&$return));\n" + "./SSI.php:1485: call_integration_hook('integrate_ssi_recentPoll', array(&$return, $topPollInstead));\n" + "./SSI.php:1654: call_integration_hook('integrate_ssi_showPoll', array(&$return));\n" + "./SSI.php:1856: call_integration_hook('integrate_ssi_news');\n" + "./SSI.php:1884: call_integration_hook('integrate_ssi_calendar', array(&$return, $eventOptions));\n" + "./SSI.php:1914: call_integration_hook('integrate_ssi_calendar', array(&$return, $eventOptions));\n" + "./SSI.php:1943: call_integration_hook('integrate_ssi_calendar', array(&$return, $eventOptions));\n" + "./SSI.php:1980: call_integration_hook('integrate_ssi_calendar', array(&$return, $eventOptions));\n" + "./SSI.php:2197: call_integration_hook('integrate_ssi_boardNews', array(&$return));\n" + "./SSI.php:2337: call_integration_hook('integrate_ssi_recentEvents', array(&$return));\n" + "./SSI.php:2486: call_integration_hook('integrate_ssi_recentAttachments', array(&$attachments));\n" + "./Themes/default/index.template.php:637: call_integration_hook('integrate_' . $list_class . '_quickbuttons', array(&$list_items));\n" + "./Themes/default/Post.template.php:472: call_integration_hook('integrate_upload_template');"; final String subst = "### $2\\n\\n```php\\n$1\\n```\\nType|Parameter|Description\\n---|---|---\\n`var`|`$3`|desc\\n"; final Pattern pattern = Pattern.compile(regex); final Matcher matcher = pattern.matcher(string); // The substituted value will be contained in the result variable final String result = matcher.replaceAll(subst); System.out.println("Substitution result: " + result); } }

Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for Java, please visit: https://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html