@extends('layouts.admin') @section('title', $title ?? 'Collection Regex Test') @section('content')

{{ $title }}

Back to List
Test your collection regex patterns against actual binary data from your database.
Enter a newsgroup name to test against
Number of binaries to test (max 1000)
Enter the regex pattern to test. Include delimiters and flags.
@if($data)
Test Results:
@if(count($data) > 0)
@foreach($data as $row) @endforeach
Binary ID Subject Match
{{ $row['binaryID'] ?? $row['id'] ?? 'N/A' }} {{ \Illuminate\Support\Str::limit($row['subject'] ?? '', 100) }} @if(isset($row['match']) && $row['match']) Match @if(isset($row['name']))
Name: {{ $row['name'] }} @endif @else No Match @endif
Tested {{ count($data) }} binaries. Review the matches above.
@else
No binaries found for the specified group or no matches found.
@endif @endif
@endsection