├── LICENSE ├── composer.json ├── helper ├── bootstrap.php └── helper.php └── src ├── CleanRegex ├── Exception │ ├── EmptyOptionalException.php │ ├── ExplicitDelimiterRequiredException.php │ ├── GroupNotMatchedException.php │ ├── IntegerFormatException.php │ ├── IntegerOverflowException.php │ ├── InternalCleanRegexException.php │ ├── InvalidIntegerTypeException.php │ ├── InvalidReplacementException.php │ ├── InvalidReturnValueException.php │ ├── MalformedPcreTemplateException.php │ ├── MaskMalformedPatternException.php │ ├── NoSuchNthElementException.php │ ├── NoSuchStreamElementException.php │ ├── NonexistentGroupException.php │ ├── PatternException.php │ ├── PatternMalformedPatternException.php │ ├── PlaceholderFigureException.php │ ├── ReplacementExpectationFailedException.php │ ├── SubjectNotMatchedException.php │ └── UnevenCutException.php ├── Internal │ ├── AutoCapture │ │ ├── AutoCapture.php │ │ ├── Group │ │ │ └── GroupAutoCapture.php │ │ ├── IdentityAutoCapture.php │ │ ├── ImposedAutoCapture.php │ │ ├── OptionSetting │ │ │ ├── IdentityOptionSetting.php │ │ │ ├── LegacyOptionSetting.php │ │ │ └── OptionSetting.php │ │ ├── OptionSettingAutoCapture.php │ │ ├── Pattern │ │ │ └── PatternAutoCapture.php │ │ └── PcreAutoCapture.php │ ├── Candidates.php │ ├── Condition.php │ ├── Cut.php │ ├── Definition.php │ ├── Delimiter │ │ ├── DelimitablePhrase.php │ │ ├── Delimiter.php │ │ ├── PcreDelimiter.php │ │ ├── PcreString.php │ │ ├── TrailingBackslashException.php │ │ ├── UndelimitablePatternException.php │ │ └── VerbedPattern.php │ ├── EmptyOptional.php │ ├── EntryPoints.php │ ├── Expression │ │ ├── Alteration.php │ │ ├── Expression.php │ │ ├── Literal.php │ │ ├── Pcre.php │ │ └── Predefinition │ │ │ ├── DelimiterPredefinition.php │ │ │ ├── IdentityPredefinition.php │ │ │ ├── Predefinition.php │ │ │ └── TrailingBackslashPredefinition.php │ ├── Filter.php │ ├── Flags.php │ ├── GroupKey │ │ ├── GroupIndex.php │ │ ├── GroupKey.php │ │ ├── GroupName.php │ │ ├── GroupNameType.php │ │ ├── GroupSignature.php │ │ └── Signatures.php │ ├── GroupNames.php │ ├── Index.php │ ├── InvalidArgument.php │ ├── Match │ │ ├── Amount.php │ │ ├── ArrayFunction.php │ │ ├── Details │ │ │ ├── DetailGroup.php │ │ │ ├── DetailScalars.php │ │ │ ├── Group │ │ │ │ ├── GroupDetails.php │ │ │ │ ├── GroupEntry.php │ │ │ │ ├── GroupFacade.php │ │ │ │ ├── GroupHandle.php │ │ │ │ ├── MatchedGroup.php │ │ │ │ └── NotMatchedGroup.php │ │ │ ├── Groups │ │ │ │ ├── DetailGroups.php │ │ │ │ ├── GroupArrayKey.php │ │ │ │ ├── IndexKey.php │ │ │ │ ├── NameKey.php │ │ │ │ └── PrimeDetailGroups.php │ │ │ ├── GroupsCount.php │ │ │ ├── MatchDetail.php │ │ │ └── NumericDetail.php │ │ ├── Flat │ │ │ ├── DictionaryFunction.php │ │ │ ├── FlatFunction.php │ │ │ └── ListFunction.php │ │ ├── GroupByFunction.php │ │ ├── GroupedDetails.php │ │ ├── GroupedTexts.php │ │ ├── Intable.php │ │ ├── Limit.php │ │ ├── MatchItems.php │ │ ├── MatchOnly.php │ │ ├── Numeral │ │ │ ├── GroupExceptions.php │ │ │ ├── IntegerBase.php │ │ │ ├── IntegerExceptions.php │ │ │ ├── MatchExceptions.php │ │ │ └── StreamExceptions.php │ │ ├── PresentOptional.php │ │ ├── SearchBase.php │ │ ├── SearchItems.php │ │ ├── SearchOnly.php │ │ └── Stream │ │ │ ├── Base │ │ │ ├── DetailStream.php │ │ │ ├── ListStream.php │ │ │ ├── StreamBase.php │ │ │ ├── TextStream.php │ │ │ └── UnmatchedStreamException.php │ │ │ ├── EmptyStreamException.php │ │ │ ├── FilterStream.php │ │ │ ├── FlatMapStream.php │ │ │ ├── GroupByCallbackStream.php │ │ │ ├── IntegerStream.php │ │ │ ├── KeyStream.php │ │ │ ├── LimitStream.php │ │ │ ├── MapEntriesStream.php │ │ │ ├── MapStream.php │ │ │ ├── NthStreamElement.php │ │ │ ├── SkipStream.php │ │ │ ├── StreamTerminal.php │ │ │ ├── UniqueStream.php │ │ │ ├── Upstream.php │ │ │ └── ValueStream.php │ ├── Model │ │ ├── DetailObjectFactory.php │ │ ├── Entry.php │ │ ├── FalseNegative.php │ │ ├── GroupAware.php │ │ ├── GroupHasAware.php │ │ ├── GroupKeys.php │ │ └── LightweightGroupAware.php │ ├── Needle.php │ ├── NestedArray.php │ ├── Numeral │ │ ├── Base.php │ │ ├── NegativeNotation.php │ │ ├── Notation.php │ │ ├── NumeralFormatException.php │ │ ├── NumeralLowerBound.php │ │ ├── NumeralOverflowException.php │ │ ├── PositiveNotation.php │ │ └── StringNumeral.php │ ├── Offset │ │ ├── ByteOffset.php │ │ ├── Coordinate.php │ │ └── SubjectCoordinate.php │ ├── PatternPrefix.php │ ├── PatternStrings.php │ ├── Pcre │ │ ├── DeprecatedMatchDetail.php │ │ ├── Legacy │ │ │ ├── ApiBase.php │ │ │ ├── Base.php │ │ │ ├── EagerMatchAllFactory.php │ │ │ ├── FactoryGroupAware.php │ │ │ ├── GroupPolyfillDecorator.php │ │ │ ├── IRawMatchOffset.php │ │ │ ├── LazyMatchAllFactory.php │ │ │ ├── MatchAllFactory.php │ │ │ ├── MatchAllFactoryMatchOffset.php │ │ │ ├── Prime │ │ │ │ ├── MatchAllFactoryPrime.php │ │ │ │ ├── MatchPrime.php │ │ │ │ ├── MatchUsedForGroup.php │ │ │ │ ├── MatchesFirstPrime.php │ │ │ │ ├── MatchesFirstUsedForGroup.php │ │ │ │ └── Prime.php │ │ │ ├── RawMatchOffset.php │ │ │ ├── RawMatches.php │ │ │ ├── RawMatchesOffset.php │ │ │ ├── RawMatchesToMatchAdapter.php │ │ │ └── UsedForGroup.php │ │ └── Signatures │ │ │ ├── ArraySignatures.php │ │ │ ├── InsufficientMatchException.php │ │ │ └── PerformanceSignatures.php │ ├── Predefinitions.php │ ├── Predicate.php │ ├── Prepared │ │ ├── Cluster │ │ │ ├── ArrayClusters.php │ │ │ ├── ClusterExpectation.php │ │ │ ├── CountedClusters.php │ │ │ ├── ExpectedClusters.php │ │ │ ├── FigureClusters.php │ │ │ ├── IndividualCluster.php │ │ │ ├── PhantomCluster.php │ │ │ └── PhantomPhrase.php │ │ ├── Clusters.php │ │ ├── CompositeCondition.php │ │ ├── Expression │ │ │ ├── DelimiterExpression.php │ │ │ ├── Mask.php │ │ │ ├── Standard.php │ │ │ └── Template.php │ │ ├── Orthography │ │ │ ├── Orthography.php │ │ │ ├── PcreOrthography.php │ │ │ ├── PcreSpelling.php │ │ │ ├── Spelling.php │ │ │ ├── StandardOrthography.php │ │ │ └── StandardSpelling.php │ │ ├── Parser │ │ │ ├── Consumer │ │ │ │ ├── CharacterClassConsumer.php │ │ │ │ ├── CommentConsumer.php │ │ │ │ ├── Consumer.php │ │ │ │ ├── ControlConsumer.php │ │ │ │ ├── EscapeConsumer.php │ │ │ │ ├── FiguresPlaceholderConsumer.php │ │ │ │ ├── GroupCloseConsumer.php │ │ │ │ ├── GroupConsumer.php │ │ │ │ ├── LiteralPlaceholderConsumer.php │ │ │ │ ├── PlaceholderConsumer.php │ │ │ │ └── QuoteConsumer.php │ │ │ ├── Convention.php │ │ │ ├── Entity │ │ │ │ ├── ClassClose.php │ │ │ │ ├── ClassOpen.php │ │ │ │ ├── Comment.php │ │ │ │ ├── Control.php │ │ │ │ ├── Entity.php │ │ │ │ ├── Escaped.php │ │ │ │ ├── GroupClose.php │ │ │ │ ├── GroupComment.php │ │ │ │ ├── GroupNull.php │ │ │ │ ├── GroupOpen.php │ │ │ │ ├── GroupOpenConditional.php │ │ │ │ ├── GroupOpenFlags.php │ │ │ │ ├── GroupRemainder.php │ │ │ │ ├── PatternEntity.php │ │ │ │ ├── Placeholder.php │ │ │ │ ├── Quote.php │ │ │ │ └── TransitiveFlags.php │ │ │ ├── EntitySequence.php │ │ │ ├── Feed │ │ │ │ ├── Feed.php │ │ │ │ ├── MatchedString.php │ │ │ │ ├── PosixClass.php │ │ │ │ ├── ShiftString.php │ │ │ │ ├── ShortestSubstring.php │ │ │ │ └── Span.php │ │ │ ├── FlagStack.php │ │ │ ├── FlagString.php │ │ │ ├── PcreParser.php │ │ │ ├── Subpattern.php │ │ │ └── SubpatternFlags.php │ │ ├── Pattern │ │ │ ├── StringPattern.php │ │ │ └── SubpatternFlagsStringPattern.php │ │ ├── PatternEntities.php │ │ ├── PatternPhrase.php │ │ ├── Phrase │ │ │ ├── AtomicGroupPhrase.php │ │ │ ├── CompositePhrase.php │ │ │ ├── ConjugatedPhrase.php │ │ │ ├── FailPhrase.php │ │ │ ├── GroupPhrase.php │ │ │ ├── IdempotentConjugation.php │ │ │ ├── NonCaptureGroupPhrase.php │ │ │ ├── PatternPhrase.php │ │ │ ├── Phrase.php │ │ │ └── WordPhrase.php │ │ ├── Placeholders │ │ │ ├── ClustersPlaceholders.php │ │ │ ├── LiteralPlaceholders.php │ │ │ └── Placeholders.php │ │ ├── Template │ │ │ ├── Cluster │ │ │ │ ├── AtomicGroup.php │ │ │ │ ├── Cluster.php │ │ │ │ └── NonCaptureGroup.php │ │ │ ├── DelimiterAgnostic.php │ │ │ ├── DelimiterAware.php │ │ │ ├── Figure │ │ │ │ ├── AlterationGroup.php │ │ │ │ ├── Figure.php │ │ │ │ ├── MaskFigure.php │ │ │ │ └── PatternFigure.php │ │ │ └── Mask │ │ │ │ ├── KeywordPattern.php │ │ │ │ ├── KeywordPatterns.php │ │ │ │ ├── KeywordsCondition.php │ │ │ │ ├── MaskPhrase.php │ │ │ │ └── Needles.php │ │ └── Word │ │ │ ├── AlterationFigures.php │ │ │ ├── AlterationWord.php │ │ │ ├── TextWord.php │ │ │ └── Word.php │ ├── Replace │ │ ├── Callback │ │ │ ├── CallbackInvoker.php │ │ │ └── ReplaceFunction.php │ │ ├── Counter.php │ │ ├── Counting │ │ │ ├── AtLeastCountingStrategy.php │ │ │ ├── AtMostCountingStrategy.php │ │ │ ├── CountingStrategy.php │ │ │ ├── ExactCountingStrategy.php │ │ │ ├── IgnoreCounting.php │ │ │ └── StateStrategy.php │ │ ├── GroupReplace │ │ │ ├── GroupAwake.php │ │ │ ├── GroupReplace.php │ │ │ └── PregDelegate.php │ │ └── ReplaceReferences.php │ ├── Split │ │ ├── ChainLinks.php │ │ ├── SplitElements.php │ │ └── SplitSubject.php │ ├── Splits.php │ ├── Subject.php │ ├── SubjectList.php │ ├── Type │ │ ├── Type.php │ │ └── ValueType.php │ ├── UnsuitableStringCondition.php │ └── VisibleCharacters.php ├── Match │ ├── Detail.php │ ├── Element.php │ ├── Group.php │ ├── Matcher.php │ ├── Optional.php │ ├── Search.php │ ├── Stream.php │ └── Structure.php ├── Pattern.php ├── PatternList.php ├── PatternTemplate.php ├── PcrePattern.php ├── Replace │ ├── ChainedReplace.php │ ├── LimitedReplace.php │ └── Replace.php └── TemplateBuilder.php ├── Exception ├── MalformedPatternException.php ├── PatternSyntaxException.php └── RegexException.php ├── Pcre.php └── SafeRegex ├── Exception ├── CatastrophicBacktrackingException.php ├── CompilePregException.php ├── InvalidReturnValueException.php ├── JitStackLimitException.php ├── PatternStructureException.php ├── PregException.php ├── PregMalformedPatternException.php ├── RecursionException.php ├── RuntimePregException.php ├── SubjectEncodingException.php ├── SuspectedReturnPregException.php └── UnicodeOffsetException.php ├── Internal ├── Bug.php ├── Constants │ ├── PhpErrorConstants.php │ ├── PregConstants.php │ └── PregMessages.php ├── Errors │ ├── CompileError.php │ ├── NoError.php │ ├── RuntimeError.php │ └── StandardCompileError.php ├── Factory │ ├── CompilePregExceptionFactory.php │ └── RuntimePregExceptionFactory.php ├── Guard │ ├── GuardedExecution.php │ ├── GuardedInvoker.php │ └── Strategy │ │ ├── DefaultSuspectedReturnStrategy.php │ │ ├── PregFilterSuspectedReturnStrategy.php │ │ ├── PregReplaceSuspectedReturnStrategy.php │ │ ├── SilencedSuspectedReturnStrategy.php │ │ └── SuspectedReturnStrategy.php ├── PcreVersion.php └── PhpError.php └── preg.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/composer.json -------------------------------------------------------------------------------- /helper/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/helper/bootstrap.php -------------------------------------------------------------------------------- /helper/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/helper/helper.php -------------------------------------------------------------------------------- /src/CleanRegex/Exception/EmptyOptionalException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Exception/EmptyOptionalException.php -------------------------------------------------------------------------------- /src/CleanRegex/Exception/ExplicitDelimiterRequiredException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Exception/ExplicitDelimiterRequiredException.php -------------------------------------------------------------------------------- /src/CleanRegex/Exception/GroupNotMatchedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Exception/GroupNotMatchedException.php -------------------------------------------------------------------------------- /src/CleanRegex/Exception/IntegerFormatException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Exception/IntegerFormatException.php -------------------------------------------------------------------------------- /src/CleanRegex/Exception/IntegerOverflowException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Exception/IntegerOverflowException.php -------------------------------------------------------------------------------- /src/CleanRegex/Exception/InternalCleanRegexException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Exception/InternalCleanRegexException.php -------------------------------------------------------------------------------- /src/CleanRegex/Exception/InvalidIntegerTypeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Exception/InvalidIntegerTypeException.php -------------------------------------------------------------------------------- /src/CleanRegex/Exception/InvalidReplacementException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Exception/InvalidReplacementException.php -------------------------------------------------------------------------------- /src/CleanRegex/Exception/InvalidReturnValueException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Exception/InvalidReturnValueException.php -------------------------------------------------------------------------------- /src/CleanRegex/Exception/MalformedPcreTemplateException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Exception/MalformedPcreTemplateException.php -------------------------------------------------------------------------------- /src/CleanRegex/Exception/MaskMalformedPatternException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Exception/MaskMalformedPatternException.php -------------------------------------------------------------------------------- /src/CleanRegex/Exception/NoSuchNthElementException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Exception/NoSuchNthElementException.php -------------------------------------------------------------------------------- /src/CleanRegex/Exception/NoSuchStreamElementException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Exception/NoSuchStreamElementException.php -------------------------------------------------------------------------------- /src/CleanRegex/Exception/NonexistentGroupException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Exception/NonexistentGroupException.php -------------------------------------------------------------------------------- /src/CleanRegex/Exception/PatternException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Exception/PatternException.php -------------------------------------------------------------------------------- /src/CleanRegex/Exception/PatternMalformedPatternException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Exception/PatternMalformedPatternException.php -------------------------------------------------------------------------------- /src/CleanRegex/Exception/PlaceholderFigureException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Exception/PlaceholderFigureException.php -------------------------------------------------------------------------------- /src/CleanRegex/Exception/ReplacementExpectationFailedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Exception/ReplacementExpectationFailedException.php -------------------------------------------------------------------------------- /src/CleanRegex/Exception/SubjectNotMatchedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Exception/SubjectNotMatchedException.php -------------------------------------------------------------------------------- /src/CleanRegex/Exception/UnevenCutException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Exception/UnevenCutException.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/AutoCapture/AutoCapture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/AutoCapture/AutoCapture.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/AutoCapture/Group/GroupAutoCapture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/AutoCapture/Group/GroupAutoCapture.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/AutoCapture/IdentityAutoCapture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/AutoCapture/IdentityAutoCapture.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/AutoCapture/ImposedAutoCapture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/AutoCapture/ImposedAutoCapture.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/AutoCapture/OptionSetting/IdentityOptionSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/AutoCapture/OptionSetting/IdentityOptionSetting.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/AutoCapture/OptionSetting/LegacyOptionSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/AutoCapture/OptionSetting/LegacyOptionSetting.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/AutoCapture/OptionSetting/OptionSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/AutoCapture/OptionSetting/OptionSetting.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/AutoCapture/OptionSettingAutoCapture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/AutoCapture/OptionSettingAutoCapture.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/AutoCapture/Pattern/PatternAutoCapture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/AutoCapture/Pattern/PatternAutoCapture.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/AutoCapture/PcreAutoCapture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/AutoCapture/PcreAutoCapture.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Candidates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Candidates.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Condition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Condition.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Cut.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Cut.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Definition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Definition.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Delimiter/DelimitablePhrase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Delimiter/DelimitablePhrase.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Delimiter/Delimiter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Delimiter/Delimiter.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Delimiter/PcreDelimiter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Delimiter/PcreDelimiter.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Delimiter/PcreString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Delimiter/PcreString.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Delimiter/TrailingBackslashException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Delimiter/TrailingBackslashException.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Delimiter/UndelimitablePatternException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Delimiter/UndelimitablePatternException.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Delimiter/VerbedPattern.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Delimiter/VerbedPattern.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/EmptyOptional.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/EmptyOptional.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/EntryPoints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/EntryPoints.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Expression/Alteration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Expression/Alteration.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Expression/Expression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Expression/Expression.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Expression/Literal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Expression/Literal.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Expression/Pcre.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Expression/Pcre.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Expression/Predefinition/DelimiterPredefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Expression/Predefinition/DelimiterPredefinition.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Expression/Predefinition/IdentityPredefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Expression/Predefinition/IdentityPredefinition.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Expression/Predefinition/Predefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Expression/Predefinition/Predefinition.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Expression/Predefinition/TrailingBackslashPredefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Expression/Predefinition/TrailingBackslashPredefinition.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Filter.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Flags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Flags.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/GroupKey/GroupIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/GroupKey/GroupIndex.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/GroupKey/GroupKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/GroupKey/GroupKey.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/GroupKey/GroupName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/GroupKey/GroupName.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/GroupKey/GroupNameType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/GroupKey/GroupNameType.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/GroupKey/GroupSignature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/GroupKey/GroupSignature.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/GroupKey/Signatures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/GroupKey/Signatures.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/GroupNames.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/GroupNames.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Index.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/InvalidArgument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/InvalidArgument.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Amount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Amount.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/ArrayFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/ArrayFunction.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Details/DetailGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Details/DetailGroup.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Details/DetailScalars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Details/DetailScalars.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Details/Group/GroupDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Details/Group/GroupDetails.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Details/Group/GroupEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Details/Group/GroupEntry.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Details/Group/GroupFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Details/Group/GroupFacade.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Details/Group/GroupHandle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Details/Group/GroupHandle.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Details/Group/MatchedGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Details/Group/MatchedGroup.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Details/Group/NotMatchedGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Details/Group/NotMatchedGroup.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Details/Groups/DetailGroups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Details/Groups/DetailGroups.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Details/Groups/GroupArrayKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Details/Groups/GroupArrayKey.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Details/Groups/IndexKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Details/Groups/IndexKey.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Details/Groups/NameKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Details/Groups/NameKey.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Details/Groups/PrimeDetailGroups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Details/Groups/PrimeDetailGroups.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Details/GroupsCount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Details/GroupsCount.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Details/MatchDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Details/MatchDetail.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Details/NumericDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Details/NumericDetail.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Flat/DictionaryFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Flat/DictionaryFunction.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Flat/FlatFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Flat/FlatFunction.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Flat/ListFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Flat/ListFunction.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/GroupByFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/GroupByFunction.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/GroupedDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/GroupedDetails.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/GroupedTexts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/GroupedTexts.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Intable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Intable.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Limit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Limit.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/MatchItems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/MatchItems.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/MatchOnly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/MatchOnly.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Numeral/GroupExceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Numeral/GroupExceptions.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Numeral/IntegerBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Numeral/IntegerBase.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Numeral/IntegerExceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Numeral/IntegerExceptions.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Numeral/MatchExceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Numeral/MatchExceptions.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Numeral/StreamExceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Numeral/StreamExceptions.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/PresentOptional.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/PresentOptional.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/SearchBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/SearchBase.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/SearchItems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/SearchItems.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/SearchOnly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/SearchOnly.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Stream/Base/DetailStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Stream/Base/DetailStream.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Stream/Base/ListStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Stream/Base/ListStream.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Stream/Base/StreamBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Stream/Base/StreamBase.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Stream/Base/TextStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Stream/Base/TextStream.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Stream/Base/UnmatchedStreamException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Stream/Base/UnmatchedStreamException.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Stream/EmptyStreamException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Stream/EmptyStreamException.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Stream/FilterStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Stream/FilterStream.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Stream/FlatMapStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Stream/FlatMapStream.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Stream/GroupByCallbackStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Stream/GroupByCallbackStream.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Stream/IntegerStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Stream/IntegerStream.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Stream/KeyStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Stream/KeyStream.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Stream/LimitStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Stream/LimitStream.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Stream/MapEntriesStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Stream/MapEntriesStream.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Stream/MapStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Stream/MapStream.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Stream/NthStreamElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Stream/NthStreamElement.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Stream/SkipStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Stream/SkipStream.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Stream/StreamTerminal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Stream/StreamTerminal.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Stream/UniqueStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Stream/UniqueStream.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Stream/Upstream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Stream/Upstream.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Match/Stream/ValueStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Match/Stream/ValueStream.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Model/DetailObjectFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Model/DetailObjectFactory.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Model/Entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Model/Entry.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Model/FalseNegative.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Model/FalseNegative.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Model/GroupAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Model/GroupAware.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Model/GroupHasAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Model/GroupHasAware.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Model/GroupKeys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Model/GroupKeys.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Model/LightweightGroupAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Model/LightweightGroupAware.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Needle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Needle.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/NestedArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/NestedArray.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Numeral/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Numeral/Base.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Numeral/NegativeNotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Numeral/NegativeNotation.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Numeral/Notation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Numeral/Notation.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Numeral/NumeralFormatException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Numeral/NumeralFormatException.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Numeral/NumeralLowerBound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Numeral/NumeralLowerBound.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Numeral/NumeralOverflowException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Numeral/NumeralOverflowException.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Numeral/PositiveNotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Numeral/PositiveNotation.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Numeral/StringNumeral.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Numeral/StringNumeral.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Offset/ByteOffset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Offset/ByteOffset.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Offset/Coordinate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Offset/Coordinate.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Offset/SubjectCoordinate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Offset/SubjectCoordinate.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/PatternPrefix.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/PatternPrefix.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/PatternStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/PatternStrings.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Pcre/DeprecatedMatchDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Pcre/DeprecatedMatchDetail.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Pcre/Legacy/ApiBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Pcre/Legacy/ApiBase.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Pcre/Legacy/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Pcre/Legacy/Base.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Pcre/Legacy/EagerMatchAllFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Pcre/Legacy/EagerMatchAllFactory.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Pcre/Legacy/FactoryGroupAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Pcre/Legacy/FactoryGroupAware.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Pcre/Legacy/GroupPolyfillDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Pcre/Legacy/GroupPolyfillDecorator.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Pcre/Legacy/IRawMatchOffset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Pcre/Legacy/IRawMatchOffset.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Pcre/Legacy/LazyMatchAllFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Pcre/Legacy/LazyMatchAllFactory.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Pcre/Legacy/MatchAllFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Pcre/Legacy/MatchAllFactory.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Pcre/Legacy/MatchAllFactoryMatchOffset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Pcre/Legacy/MatchAllFactoryMatchOffset.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Pcre/Legacy/Prime/MatchAllFactoryPrime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Pcre/Legacy/Prime/MatchAllFactoryPrime.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Pcre/Legacy/Prime/MatchPrime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Pcre/Legacy/Prime/MatchPrime.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Pcre/Legacy/Prime/MatchUsedForGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Pcre/Legacy/Prime/MatchUsedForGroup.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Pcre/Legacy/Prime/MatchesFirstPrime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Pcre/Legacy/Prime/MatchesFirstPrime.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Pcre/Legacy/Prime/MatchesFirstUsedForGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Pcre/Legacy/Prime/MatchesFirstUsedForGroup.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Pcre/Legacy/Prime/Prime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Pcre/Legacy/Prime/Prime.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Pcre/Legacy/RawMatchOffset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Pcre/Legacy/RawMatchOffset.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Pcre/Legacy/RawMatches.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Pcre/Legacy/RawMatches.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Pcre/Legacy/RawMatchesOffset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Pcre/Legacy/RawMatchesOffset.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Pcre/Legacy/RawMatchesToMatchAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Pcre/Legacy/RawMatchesToMatchAdapter.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Pcre/Legacy/UsedForGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Pcre/Legacy/UsedForGroup.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Pcre/Signatures/ArraySignatures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Pcre/Signatures/ArraySignatures.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Pcre/Signatures/InsufficientMatchException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Pcre/Signatures/InsufficientMatchException.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Pcre/Signatures/PerformanceSignatures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Pcre/Signatures/PerformanceSignatures.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Predefinitions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Predefinitions.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Predicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Predicate.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Cluster/ArrayClusters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Cluster/ArrayClusters.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Cluster/ClusterExpectation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Cluster/ClusterExpectation.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Cluster/CountedClusters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Cluster/CountedClusters.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Cluster/ExpectedClusters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Cluster/ExpectedClusters.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Cluster/FigureClusters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Cluster/FigureClusters.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Cluster/IndividualCluster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Cluster/IndividualCluster.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Cluster/PhantomCluster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Cluster/PhantomCluster.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Cluster/PhantomPhrase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Cluster/PhantomPhrase.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Clusters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Clusters.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/CompositeCondition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/CompositeCondition.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Expression/DelimiterExpression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Expression/DelimiterExpression.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Expression/Mask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Expression/Mask.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Expression/Standard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Expression/Standard.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Expression/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Expression/Template.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Orthography/Orthography.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Orthography/Orthography.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Orthography/PcreOrthography.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Orthography/PcreOrthography.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Orthography/PcreSpelling.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Orthography/PcreSpelling.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Orthography/Spelling.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Orthography/Spelling.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Orthography/StandardOrthography.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Orthography/StandardOrthography.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Orthography/StandardSpelling.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Orthography/StandardSpelling.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Consumer/CharacterClassConsumer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Consumer/CharacterClassConsumer.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Consumer/CommentConsumer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Consumer/CommentConsumer.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Consumer/Consumer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Consumer/Consumer.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Consumer/ControlConsumer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Consumer/ControlConsumer.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Consumer/EscapeConsumer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Consumer/EscapeConsumer.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Consumer/FiguresPlaceholderConsumer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Consumer/FiguresPlaceholderConsumer.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Consumer/GroupCloseConsumer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Consumer/GroupCloseConsumer.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Consumer/GroupConsumer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Consumer/GroupConsumer.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Consumer/LiteralPlaceholderConsumer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Consumer/LiteralPlaceholderConsumer.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Consumer/PlaceholderConsumer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Consumer/PlaceholderConsumer.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Consumer/QuoteConsumer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Consumer/QuoteConsumer.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Convention.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Convention.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Entity/ClassClose.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Entity/ClassClose.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Entity/ClassOpen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Entity/ClassOpen.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Entity/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Entity/Comment.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Entity/Control.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Entity/Control.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Entity/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Entity/Entity.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Entity/Escaped.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Entity/Escaped.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Entity/GroupClose.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Entity/GroupClose.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Entity/GroupComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Entity/GroupComment.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Entity/GroupNull.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Entity/GroupNull.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Entity/GroupOpen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Entity/GroupOpen.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Entity/GroupOpenConditional.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Entity/GroupOpenConditional.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Entity/GroupOpenFlags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Entity/GroupOpenFlags.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Entity/GroupRemainder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Entity/GroupRemainder.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Entity/PatternEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Entity/PatternEntity.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Entity/Placeholder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Entity/Placeholder.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Entity/Quote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Entity/Quote.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Entity/TransitiveFlags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Entity/TransitiveFlags.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/EntitySequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/EntitySequence.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Feed/Feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Feed/Feed.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Feed/MatchedString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Feed/MatchedString.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Feed/PosixClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Feed/PosixClass.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Feed/ShiftString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Feed/ShiftString.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Feed/ShortestSubstring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Feed/ShortestSubstring.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Feed/Span.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Feed/Span.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/FlagStack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/FlagStack.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/FlagString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/FlagString.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/PcreParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/PcreParser.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/Subpattern.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/Subpattern.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Parser/SubpatternFlags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Parser/SubpatternFlags.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Pattern/StringPattern.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Pattern/StringPattern.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Pattern/SubpatternFlagsStringPattern.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Pattern/SubpatternFlagsStringPattern.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/PatternEntities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/PatternEntities.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/PatternPhrase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/PatternPhrase.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Phrase/AtomicGroupPhrase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Phrase/AtomicGroupPhrase.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Phrase/CompositePhrase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Phrase/CompositePhrase.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Phrase/ConjugatedPhrase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Phrase/ConjugatedPhrase.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Phrase/FailPhrase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Phrase/FailPhrase.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Phrase/GroupPhrase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Phrase/GroupPhrase.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Phrase/IdempotentConjugation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Phrase/IdempotentConjugation.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Phrase/NonCaptureGroupPhrase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Phrase/NonCaptureGroupPhrase.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Phrase/PatternPhrase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Phrase/PatternPhrase.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Phrase/Phrase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Phrase/Phrase.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Phrase/WordPhrase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Phrase/WordPhrase.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Placeholders/ClustersPlaceholders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Placeholders/ClustersPlaceholders.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Placeholders/LiteralPlaceholders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Placeholders/LiteralPlaceholders.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Placeholders/Placeholders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Placeholders/Placeholders.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Template/Cluster/AtomicGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Template/Cluster/AtomicGroup.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Template/Cluster/Cluster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Template/Cluster/Cluster.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Template/Cluster/NonCaptureGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Template/Cluster/NonCaptureGroup.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Template/DelimiterAgnostic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Template/DelimiterAgnostic.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Template/DelimiterAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Template/DelimiterAware.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Template/Figure/AlterationGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Template/Figure/AlterationGroup.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Template/Figure/Figure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Template/Figure/Figure.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Template/Figure/MaskFigure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Template/Figure/MaskFigure.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Template/Figure/PatternFigure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Template/Figure/PatternFigure.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Template/Mask/KeywordPattern.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Template/Mask/KeywordPattern.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Template/Mask/KeywordPatterns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Template/Mask/KeywordPatterns.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Template/Mask/KeywordsCondition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Template/Mask/KeywordsCondition.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Template/Mask/MaskPhrase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Template/Mask/MaskPhrase.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Template/Mask/Needles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Template/Mask/Needles.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Word/AlterationFigures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Word/AlterationFigures.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Word/AlterationWord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Word/AlterationWord.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Word/TextWord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Word/TextWord.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Prepared/Word/Word.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Prepared/Word/Word.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Replace/Callback/CallbackInvoker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Replace/Callback/CallbackInvoker.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Replace/Callback/ReplaceFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Replace/Callback/ReplaceFunction.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Replace/Counter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Replace/Counter.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Replace/Counting/AtLeastCountingStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Replace/Counting/AtLeastCountingStrategy.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Replace/Counting/AtMostCountingStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Replace/Counting/AtMostCountingStrategy.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Replace/Counting/CountingStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Replace/Counting/CountingStrategy.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Replace/Counting/ExactCountingStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Replace/Counting/ExactCountingStrategy.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Replace/Counting/IgnoreCounting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Replace/Counting/IgnoreCounting.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Replace/Counting/StateStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Replace/Counting/StateStrategy.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Replace/GroupReplace/GroupAwake.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Replace/GroupReplace/GroupAwake.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Replace/GroupReplace/GroupReplace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Replace/GroupReplace/GroupReplace.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Replace/GroupReplace/PregDelegate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Replace/GroupReplace/PregDelegate.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Replace/ReplaceReferences.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Replace/ReplaceReferences.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Split/ChainLinks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Split/ChainLinks.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Split/SplitElements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Split/SplitElements.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Split/SplitSubject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Split/SplitSubject.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Splits.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Splits.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Subject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Subject.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/SubjectList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/SubjectList.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Type/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Type/Type.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/Type/ValueType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/Type/ValueType.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/UnsuitableStringCondition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/UnsuitableStringCondition.php -------------------------------------------------------------------------------- /src/CleanRegex/Internal/VisibleCharacters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Internal/VisibleCharacters.php -------------------------------------------------------------------------------- /src/CleanRegex/Match/Detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Match/Detail.php -------------------------------------------------------------------------------- /src/CleanRegex/Match/Element.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Match/Element.php -------------------------------------------------------------------------------- /src/CleanRegex/Match/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Match/Group.php -------------------------------------------------------------------------------- /src/CleanRegex/Match/Matcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Match/Matcher.php -------------------------------------------------------------------------------- /src/CleanRegex/Match/Optional.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Match/Optional.php -------------------------------------------------------------------------------- /src/CleanRegex/Match/Search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Match/Search.php -------------------------------------------------------------------------------- /src/CleanRegex/Match/Stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Match/Stream.php -------------------------------------------------------------------------------- /src/CleanRegex/Match/Structure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Match/Structure.php -------------------------------------------------------------------------------- /src/CleanRegex/Pattern.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Pattern.php -------------------------------------------------------------------------------- /src/CleanRegex/PatternList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/PatternList.php -------------------------------------------------------------------------------- /src/CleanRegex/PatternTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/PatternTemplate.php -------------------------------------------------------------------------------- /src/CleanRegex/PcrePattern.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/PcrePattern.php -------------------------------------------------------------------------------- /src/CleanRegex/Replace/ChainedReplace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Replace/ChainedReplace.php -------------------------------------------------------------------------------- /src/CleanRegex/Replace/LimitedReplace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Replace/LimitedReplace.php -------------------------------------------------------------------------------- /src/CleanRegex/Replace/Replace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/Replace/Replace.php -------------------------------------------------------------------------------- /src/CleanRegex/TemplateBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/CleanRegex/TemplateBuilder.php -------------------------------------------------------------------------------- /src/Exception/MalformedPatternException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/Exception/MalformedPatternException.php -------------------------------------------------------------------------------- /src/Exception/PatternSyntaxException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/Exception/PatternSyntaxException.php -------------------------------------------------------------------------------- /src/Exception/RegexException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/Exception/RegexException.php -------------------------------------------------------------------------------- /src/Pcre.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/Pcre.php -------------------------------------------------------------------------------- /src/SafeRegex/Exception/CatastrophicBacktrackingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/SafeRegex/Exception/CatastrophicBacktrackingException.php -------------------------------------------------------------------------------- /src/SafeRegex/Exception/CompilePregException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/SafeRegex/Exception/CompilePregException.php -------------------------------------------------------------------------------- /src/SafeRegex/Exception/InvalidReturnValueException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/SafeRegex/Exception/InvalidReturnValueException.php -------------------------------------------------------------------------------- /src/SafeRegex/Exception/JitStackLimitException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/SafeRegex/Exception/JitStackLimitException.php -------------------------------------------------------------------------------- /src/SafeRegex/Exception/PatternStructureException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/SafeRegex/Exception/PatternStructureException.php -------------------------------------------------------------------------------- /src/SafeRegex/Exception/PregException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/SafeRegex/Exception/PregException.php -------------------------------------------------------------------------------- /src/SafeRegex/Exception/PregMalformedPatternException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/SafeRegex/Exception/PregMalformedPatternException.php -------------------------------------------------------------------------------- /src/SafeRegex/Exception/RecursionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/SafeRegex/Exception/RecursionException.php -------------------------------------------------------------------------------- /src/SafeRegex/Exception/RuntimePregException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/SafeRegex/Exception/RuntimePregException.php -------------------------------------------------------------------------------- /src/SafeRegex/Exception/SubjectEncodingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/SafeRegex/Exception/SubjectEncodingException.php -------------------------------------------------------------------------------- /src/SafeRegex/Exception/SuspectedReturnPregException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/SafeRegex/Exception/SuspectedReturnPregException.php -------------------------------------------------------------------------------- /src/SafeRegex/Exception/UnicodeOffsetException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/SafeRegex/Exception/UnicodeOffsetException.php -------------------------------------------------------------------------------- /src/SafeRegex/Internal/Bug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/SafeRegex/Internal/Bug.php -------------------------------------------------------------------------------- /src/SafeRegex/Internal/Constants/PhpErrorConstants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/SafeRegex/Internal/Constants/PhpErrorConstants.php -------------------------------------------------------------------------------- /src/SafeRegex/Internal/Constants/PregConstants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/SafeRegex/Internal/Constants/PregConstants.php -------------------------------------------------------------------------------- /src/SafeRegex/Internal/Constants/PregMessages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/SafeRegex/Internal/Constants/PregMessages.php -------------------------------------------------------------------------------- /src/SafeRegex/Internal/Errors/CompileError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/SafeRegex/Internal/Errors/CompileError.php -------------------------------------------------------------------------------- /src/SafeRegex/Internal/Errors/NoError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/SafeRegex/Internal/Errors/NoError.php -------------------------------------------------------------------------------- /src/SafeRegex/Internal/Errors/RuntimeError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/SafeRegex/Internal/Errors/RuntimeError.php -------------------------------------------------------------------------------- /src/SafeRegex/Internal/Errors/StandardCompileError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/SafeRegex/Internal/Errors/StandardCompileError.php -------------------------------------------------------------------------------- /src/SafeRegex/Internal/Factory/CompilePregExceptionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/SafeRegex/Internal/Factory/CompilePregExceptionFactory.php -------------------------------------------------------------------------------- /src/SafeRegex/Internal/Factory/RuntimePregExceptionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/SafeRegex/Internal/Factory/RuntimePregExceptionFactory.php -------------------------------------------------------------------------------- /src/SafeRegex/Internal/Guard/GuardedExecution.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/SafeRegex/Internal/Guard/GuardedExecution.php -------------------------------------------------------------------------------- /src/SafeRegex/Internal/Guard/GuardedInvoker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/SafeRegex/Internal/Guard/GuardedInvoker.php -------------------------------------------------------------------------------- /src/SafeRegex/Internal/Guard/Strategy/DefaultSuspectedReturnStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/SafeRegex/Internal/Guard/Strategy/DefaultSuspectedReturnStrategy.php -------------------------------------------------------------------------------- /src/SafeRegex/Internal/Guard/Strategy/PregFilterSuspectedReturnStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/SafeRegex/Internal/Guard/Strategy/PregFilterSuspectedReturnStrategy.php -------------------------------------------------------------------------------- /src/SafeRegex/Internal/Guard/Strategy/PregReplaceSuspectedReturnStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/SafeRegex/Internal/Guard/Strategy/PregReplaceSuspectedReturnStrategy.php -------------------------------------------------------------------------------- /src/SafeRegex/Internal/Guard/Strategy/SilencedSuspectedReturnStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/SafeRegex/Internal/Guard/Strategy/SilencedSuspectedReturnStrategy.php -------------------------------------------------------------------------------- /src/SafeRegex/Internal/Guard/Strategy/SuspectedReturnStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/SafeRegex/Internal/Guard/Strategy/SuspectedReturnStrategy.php -------------------------------------------------------------------------------- /src/SafeRegex/Internal/PcreVersion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/SafeRegex/Internal/PcreVersion.php -------------------------------------------------------------------------------- /src/SafeRegex/Internal/PhpError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/SafeRegex/Internal/PhpError.php -------------------------------------------------------------------------------- /src/SafeRegex/preg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-regx/T-Regx/HEAD/src/SafeRegex/preg.php --------------------------------------------------------------------------------