Regular Expressions 101

Save & Share

Flavor

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

Function

  • Match
  • Substitution
  • List
  • Unit Tests

Tools

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

Regular Expression

/
/
gmi

Test String

Code Generator

Generated Code

# coding=utf8 # the above tag defines encoding for this document and is for Python 2.x compatibility import re regex = r"^\d{4}.*CSI.*\"(.*)\"\sof\s(.*?)\,\sVersion\s=\s(.*?)\,\spA\s\=\s(?:.*?\_)+([A-Z]{4,5}).*?\,\sCulture\s(?|(?==).*?\]\"(.*?)\"|(\w*))\,\sVersionScope\s(?|(?=\=)\=\s.(.*)|(\w*))\,\sPublicKeyToken\s\=\s\{.+\:(.*?)\}.*" test_str = ("2018-05-17 03:56:25, Info CSI 0000000f [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 03:56:25, Info CSI 00000010 [SR] Beginning Verify and Repair transaction\n" "2018-05-17 03:56:44, Info CSI 00000012 [SR] Verify complete\n" "2018-05-17 03:56:45, Info CSI 00000013 [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 03:56:45, Info CSI 00000014 [SR] Beginning Verify and Repair transaction\n" "2018-05-17 03:56:51, Info CSI 00000015 [SR] Cannot repair member file [l:28{14}]\"jsc.exe.config\" of jsc, Version = 6.1.7601.18523, pA = PROCESSOR_ARCHITECTURE_MSIL (8), Culture neutral, VersionScope neutral, PublicKeyToken = {l:8 b:b03f5f7f11d50a3a}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 03:57:00, Info CSI 00000016 [SR] Cannot repair member file [l:28{14}]\"jsc.exe.config\" of jsc, Version = 6.1.7601.18523, pA = PROCESSOR_ARCHITECTURE_MSIL (8), Culture neutral, VersionScope neutral, PublicKeyToken = {l:8 b:b03f5f7f11d50a3a}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 03:57:00, Info CSI 00000017 [SR] This component was referenced by [l:154{77}]\"Package_1_for_KB2937610~31bf3856ad364e35~x86~~6.1.1.3.2937610-184_neutral_GDR\"\n" "2018-05-17 03:57:01, Info CSI 00000019 [SR] Verify complete\n" "2018-05-17 03:57:02, Info CSI 0000001a [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 03:57:02, Info CSI 0000001b [SR] Beginning Verify and Repair transaction\n" "2018-05-17 03:57:20, Info CSI 0000001d [SR] Verify complete\n" "2018-05-17 03:57:21, Info CSI 0000001e [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 03:57:21, Info CSI 0000001f [SR] Beginning Verify and Repair transaction\n" "2018-05-17 03:57:39, Info CSI 00000021 [SR] Verify complete\n" "2018-05-17 03:57:40, Info CSI 00000022 [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 03:57:40, Info CSI 00000023 [SR] Beginning Verify and Repair transaction\n" "2018-05-17 03:57:57, Info CSI 00000025 [SR] Verify complete\n" "2018-05-17 03:57:57, Info CSI 00000026 [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 03:57:57, Info CSI 00000027 [SR] Beginning Verify and Repair transaction\n" "2018-05-17 03:58:15, Info CSI 00000029 [SR] Verify complete\n" "2018-05-17 03:58:16, Info CSI 0000002a [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 03:58:16, Info CSI 0000002b [SR] Beginning Verify and Repair transaction\n" "2018-05-17 03:58:34, Info CSI 0000002d [SR] Verify complete\n" "2018-05-17 03:58:35, Info CSI 0000002e [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 03:58:35, Info CSI 0000002f [SR] Beginning Verify and Repair transaction\n" "2018-05-17 03:58:55, Info CSI 00000031 [SR] Verify complete\n" "2018-05-17 03:58:56, Info CSI 00000032 [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 03:58:56, Info CSI 00000033 [SR] Beginning Verify and Repair transaction\n" "2018-05-17 03:59:09, Info CSI 00000035 [SR] Verify complete\n" "2018-05-17 03:59:09, Info CSI 00000036 [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 03:59:09, Info CSI 00000037 [SR] Beginning Verify and Repair transaction\n" "2018-05-17 03:59:14, Info CSI 00000039 [SR] Verify complete\n" "2018-05-17 03:59:15, Info CSI 0000003a [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 03:59:15, Info CSI 0000003b [SR] Beginning Verify and Repair transaction\n" "2018-05-17 03:59:19, Info CSI 0000003d [SR] Verify complete\n" "2018-05-17 03:59:19, Info CSI 0000003e [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 03:59:19, Info CSI 0000003f [SR] Beginning Verify and Repair transaction\n" "2018-05-17 03:59:23, Info CSI 00000041 [SR] Verify complete\n" "2018-05-17 03:59:24, Info CSI 00000042 [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 03:59:24, Info CSI 00000043 [SR] Beginning Verify and Repair transaction\n" "2018-05-17 03:59:28, Info CSI 00000045 [SR] Verify complete\n" "2018-05-17 03:59:28, Info CSI 00000046 [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 03:59:28, Info CSI 00000047 [SR] Beginning Verify and Repair transaction\n" "2018-05-17 03:59:32, Info CSI 00000049 [SR] Verify complete\n" "2018-05-17 03:59:33, Info CSI 0000004a [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 03:59:33, Info CSI 0000004b [SR] Beginning Verify and Repair transaction\n" "2018-05-17 03:59:37, Info CSI 0000004d [SR] Verify complete\n" "2018-05-17 03:59:37, Info CSI 0000004e [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 03:59:37, Info CSI 0000004f [SR] Beginning Verify and Repair transaction\n" "2018-05-17 03:59:41, Info CSI 00000051 [SR] Verify complete\n" "2018-05-17 03:59:42, Info CSI 00000052 [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 03:59:42, Info CSI 00000053 [SR] Beginning Verify and Repair transaction\n" "2018-05-17 03:59:46, Info CSI 00000055 [SR] Verify complete\n" "2018-05-17 03:59:47, Info CSI 00000056 [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 03:59:47, Info CSI 00000057 [SR] Beginning Verify and Repair transaction\n" "2018-05-17 03:59:51, Info CSI 00000059 [SR] Verify complete\n" "2018-05-17 03:59:52, Info CSI 0000005a [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 03:59:52, Info CSI 0000005b [SR] Beginning Verify and Repair transaction\n" "2018-05-17 04:00:06, Info CSI 0000005d [SR] Verify complete\n" "2018-05-17 04:00:07, Info CSI 0000005e [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 04:00:07, Info CSI 0000005f [SR] Beginning Verify and Repair transaction\n" "2018-05-17 04:00:11, Info CSI 00000060 [SR] Cannot repair member file [l:32{16}]\"RSMGRSTR.dll.mui\" of brmfcmf.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:00:15, Info CSI 00000061 [SR] Cannot repair member file [l:30{15}]\"BrSerId.sys.mui\" of brmfport.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:00:18, Info CSI 00000062 [SR] Cannot repair member file [l:30{15}]\"BrSerId.sys.mui\" of brmfport.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:00:18, Info CSI 00000063 [SR] This component was referenced by [l:190{95}]\"Microsoft-Windows-Client-Drivers-Package~31bf3856ad364e35~x86~en-US~6.1.7601.17514.INF_brmfport\"\n" "2018-05-17 04:00:18, Info CSI 00000064 [SR] Cannot repair member file [l:32{16}]\"RSMGRSTR.dll.mui\" of brmfcmf.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:00:18, Info CSI 00000065 [SR] This component was referenced by [l:188{94}]\"Microsoft-Windows-Client-Drivers-Package~31bf3856ad364e35~x86~en-US~6.1.7601.17514.INF_brmfcmf\"\n" "2018-05-17 04:00:18, Info CSI 00000067 [SR] Verify complete\n" "2018-05-17 04:00:19, Info CSI 00000068 [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 04:00:19, Info CSI 00000069 [SR] Beginning Verify and Repair transaction\n" "2018-05-17 04:00:21, Info CSI 0000006a [SR] Cannot repair member file [l:34{17}]\"caspol.exe.config\" of caspol, Version = 6.1.7601.18523, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope neutral, PublicKeyToken = {l:8 b:b03f5f7f11d50a3a}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:00:25, Info CSI 0000006b [SR] Cannot repair member file [l:34{17}]\"caspol.exe.config\" of caspol, Version = 6.1.7601.18523, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope neutral, PublicKeyToken = {l:8 b:b03f5f7f11d50a3a}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:00:25, Info CSI 0000006c [SR] This component was referenced by [l:154{77}]\"Package_1_for_KB2937610~31bf3856ad364e35~x86~~6.1.1.3.2937610-126_neutral_GDR\"\n" "2018-05-17 04:00:25, Info CSI 0000006e [SR] Verify complete\n" "2018-05-17 04:00:26, Info CSI 0000006f [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 04:00:26, Info CSI 00000070 [SR] Beginning Verify and Repair transaction\n" "2018-05-17 04:00:34, Info CSI 00000072 [SR] Verify complete\n" "2018-05-17 04:00:34, Info CSI 00000073 [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 04:00:34, Info CSI 00000074 [SR] Beginning Verify and Repair transaction\n" "2018-05-17 04:00:44, Info CSI 00000076 [SR] Verify complete\n" "2018-05-17 04:00:46, Info CSI 00000077 [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 04:00:46, Info CSI 00000078 [SR] Beginning Verify and Repair transaction\n" "2018-05-17 04:00:53, Info CSI 0000007a [SR] Verify complete\n" "2018-05-17 04:00:54, Info CSI 0000007b [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 04:00:54, Info CSI 0000007c [SR] Beginning Verify and Repair transaction\n" "2018-05-17 04:01:03, Info CSI 0000007e [SR] Verify complete\n" "2018-05-17 04:01:04, Info CSI 0000007f [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 04:01:04, Info CSI 00000080 [SR] Beginning Verify and Repair transaction\n" "2018-05-17 04:01:06, Info CSI 00000081 [SR] Cannot repair member file [l:32{16}]\"hpowiav1.dll.mui\" of hpoa1ss.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:13, Info CSI 00000082 [SR] Cannot repair member file [l:32{16}]\"i8042prt.sys.mui\" of keyboard.inf.Resources, Version = 6.1.7601.17514, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:18, Info CSI 00000083 [SR] Cannot repair member file [l:20{10}]\"secdrv.sys\" of Macrovision-Protection-SafeDisc, Version = 6.1.7601.18977, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:21, Info CSI 00000084 [SR] Cannot repair member file [l:32{16}]\"i8042prt.sys.mui\" of keyboard.inf.Resources, Version = 6.1.7601.17514, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:21, Info CSI 00000085 [SR] This component was referenced by [l:190{95}]\"Microsoft-Windows-Common-Drivers-Package~31bf3856ad364e35~x86~en-US~6.1.7601.17514.INF_keyboard\"\n" "2018-05-17 04:01:22, Info CSI 00000086 [SR] Cannot repair member file [l:32{16}]\"hpowiav1.dll.mui\" of hpoa1ss.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:22, Info CSI 00000087 [SR] This component was referenced by [l:188{94}]\"Microsoft-Windows-Client-Drivers-Package~31bf3856ad364e35~x86~en-US~6.1.7601.17514.INF_hpoa1ss\"\n" "2018-05-17 04:01:22, Info CSI 00000088 [SR] Cannot repair member file [l:20{10}]\"secdrv.sys\" of Macrovision-Protection-SafeDisc, Version = 6.1.7601.18977, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:22, Info CSI 00000089 [SR] This component was referenced by [l:150{75}]\"Package_1_for_KB3086255~31bf3856ad364e35~x86~~6.1.1.0.3086255-2_neutral_GDR\"\n" "2018-05-17 04:01:22, Info CSI 0000008b [SR] Verify complete\n" "2018-05-17 04:01:22, Info CSI 0000008c [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 04:01:22, Info CSI 0000008d [SR] Beginning Verify and Repair transaction\n" "2018-05-17 04:01:25, Info CSI 0000008e [SR] Cannot repair member file [l:30{15}]\"BrSerIb.sys.mui\" of mdmbr004.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:25, Info CSI 0000008f [SR] Cannot repair member file [l:30{15}]\"BrSerIb.sys.mui\" of mdmbr005.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:25, Info CSI 00000090 [SR] Cannot repair member file [l:30{15}]\"BrSerIb.sys.mui\" of mdmbr006.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:25, Info CSI 00000091 [SR] Cannot repair member file [l:30{15}]\"BrSerIb.sys.mui\" of mdmbr007.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:26, Info CSI 00000092 [SR] Cannot repair member file [l:30{15}]\"BrSerIb.sys.mui\" of mdmbr008.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:26, Info CSI 00000093 [SR] Cannot repair member file [l:30{15}]\"BrSerIb.sys.mui\" of mdmbr00a.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:34, Info CSI 00000094 [SR] Cannot repair member file [l:30{15}]\"BrSerIb.sys.mui\" of mdmbr005.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:34, Info CSI 00000095 [SR] This component was referenced by [l:202{101}]\"Microsoft-Windows-Common-Modem-Drivers-Package~31bf3856ad364e35~x86~en-US~6.1.7601.17514.INF_mdmbr005\"\n" "2018-05-17 04:01:35, Info CSI 00000096 [SR] Cannot repair member file [l:30{15}]\"BrSerIb.sys.mui\" of mdmbr006.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:35, Info CSI 00000097 [SR] This component was referenced by [l:202{101}]\"Microsoft-Windows-Common-Modem-Drivers-Package~31bf3856ad364e35~x86~en-US~6.1.7601.17514.INF_mdmbr006\"\n" "2018-05-17 04:01:35, Info CSI 00000098 [SR] Cannot repair member file [l:30{15}]\"BrSerIb.sys.mui\" of mdmbr007.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:35, Info CSI 00000099 [SR] This component was referenced by [l:202{101}]\"Microsoft-Windows-Common-Modem-Drivers-Package~31bf3856ad364e35~x86~en-US~6.1.7601.17514.INF_mdmbr007\"\n" "2018-05-17 04:01:35, Info CSI 0000009a [SR] Cannot repair member file [l:30{15}]\"BrSerIb.sys.mui\" of mdmbr008.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:35, Info CSI 0000009b [SR] This component was referenced by [l:202{101}]\"Microsoft-Windows-Common-Modem-Drivers-Package~31bf3856ad364e35~x86~en-US~6.1.7601.17514.INF_mdmbr008\"\n" "2018-05-17 04:01:35, Info CSI 0000009c [SR] Cannot repair member file [l:30{15}]\"BrSerIb.sys.mui\" of mdmbr00a.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:35, Info CSI 0000009d [SR] This component was referenced by [l:202{101}]\"Microsoft-Windows-Common-Modem-Drivers-Package~31bf3856ad364e35~x86~en-US~6.1.7601.17514.INF_mdmbr00a\"\n" "2018-05-17 04:01:35, Info CSI 0000009e [SR] Cannot repair member file [l:30{15}]\"BrSerIb.sys.mui\" of mdmbr004.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:35, Info CSI 0000009f [SR] This component was referenced by [l:202{101}]\"Microsoft-Windows-Common-Modem-Drivers-Package~31bf3856ad364e35~x86~en-US~6.1.7601.17514.INF_mdmbr004\"\n" "2018-05-17 04:01:35, Info CSI 000000a1 [SR] Verify complete\n" "2018-05-17 04:01:35, Info CSI 000000a2 [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 04:01:35, Info CSI 000000a3 [SR] Beginning Verify and Repair transaction\n" "2018-05-17 04:01:45, Info CSI 000000a5 [SR] Verify complete\n" "2018-05-17 04:01:46, Info CSI 000000a6 [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 04:01:46, Info CSI 000000a7 [SR] Beginning Verify and Repair transaction\n" "2018-05-17 04:02:16, Info CSI 000000be [SR] Verify complete\n" "2018-05-17 04:02:17, Info CSI 000000bf [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 04:02:17, Info CSI 000000c0 [SR] Beginning Verify and Repair transaction\n" "2018-05-17 04:02:41, Info CSI 000000c2 [SR] Verify complete\n" "2018-05-17 04:02:41, Info CSI 000000c3 [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 04:02:41, Info CSI 000000c4 [SR] Beginning Verify and Repair transaction\n" "2018-05-17 04:03:11, Info CSI 000000c7 [SR] Verify complete\n" "2018-05-17 04:03:12, Info CSI 000000c8 [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 04:03:12, Info CSI 000000c9 [SR] Beginning Verify and Repair transaction\n" "2018-05-17 04:03:24, Info CSI 000000cd [SR] Verify complete\n" "2018-05-17 04:03:25, Info CSI 000000ce [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 04:03:25, Info CSI 000000cf [SR] Beginning Verify and Repair transaction\n" "2018-05-17 04:03:41, Info CSI 000000d3 [SR] Verify complete\n" "2018-05-17 04:03:42, Info CSI 000000d4 [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 04:03:42, Info CSI 000000d5 [SR] Beginning Verify and Repair transaction\n" "2018-05-17 04:03:42, Info CSI 000000d6 [SR] Cannot repair member file [l:32{16}]\"WMM2CLIP.dll.mui\" of Microsoft-Windows-ClipsInTheLibrary.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:03:53, Info CSI 000000d7 [SR] Cannot repair member file [l:32{16}]\"WMM2CLIP.dll.mui\" of Microsoft-Windows-ClipsInTheLibrary.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:03:53, Info CSI 000000d8 [SR] This component was referenced by [l:202{101}]\"Microsoft-Windows-OpticalMediaDisc-Package~31bf3856ad364e35~x86~en-US~6.1.7601.17514.OpticalMediaDisc\"\n" "2018-05-17 04:03:53, Info CSI 000000d9 [SR] This component was referenced by [l:206{103}]\"Microsoft-Windows-ClipsInTheLibrary-Package~31bf3856ad364e35~x86~en-US~6.1.7601.17514.ClipsInTheLibrary\"\n" "2018-05-17 04:03:54, Info CSI 000000db [SR] Verify complete\n" "2018-05-17 04:03:55, Info CSI 000000dc [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 04:03:55, Info CSI 000000dd [SR] Beginning Verify and Repair transaction\n" "2018-05-17 04:04:01, Info CSI 000000de [SR] Cannot repair member file [l:24{12}]\"WMM2CLIP.dll\" of Microsoft-Windows-ClipsInTheLibrary, Version = 6.1.7601.17514, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:04:01, Info CSI 000000df [SR] Cannot repair member file [l:22{11}]\"Filters.xml\" of Microsoft-Windows-ClipsInTheLibrary, Version = 6.1.7601.17514, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:04:05, Info CSI 000000e0 [SR] Cannot repair member file [l:34{17}]\"R000000000001.clb\" of Microsoft-Windows-COM-ComPlus-Runtime, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:04:08, Info CSI 000000e1 [SR] Cannot repair member file [l:18{9}]\"MSDTC.LOG\" of Microsoft-Windows-COM-DTC-Runtime, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:04:14, Info CSI 000000e2 [SR] Cannot repair member file [l:24{12}]\"WMM2CLIP.dll\" of Microsoft-Windows-ClipsInTheLibrary, Version = 6.1.7601.17514, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:04:14, Info CSI 000000e3 [SR] This component was referenced by [l:196{98}]\"Microsoft-Windows-ClipsInTheLibrary-Package~31bf3856ad364e35~x86~~6.1.7601.17514.ClipsInTheLibrary\"\n" "2018-05-17 04:04:14, Info CSI 000000e4 [SR] This component was referenced by [l:192{96}]\"Microsoft-Windows-OpticalMediaDisc-Package~31bf3856ad364e35~x86~~6.1.7601.17514.OpticalMediaDisc\"\n" "2018-05-17 04:04:14, Info CSI 000000e5 [SR] Cannot repair member file [l:22{11}]\"Filters.xml\" of Microsoft-Windows-ClipsInTheLibrary, Version = 6.1.7601.17514, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:04:14, Info CSI 000000e6 [SR] This component was referenced by [l:196{98}]\"Microsoft-Windows-ClipsInTheLibrary-Package~31bf3856ad364e35~x86~~6.1.7601.17514.ClipsInTheLibrary\"\n" "2018-05-17 04:04:14, Info CSI 000000e7 [SR] This component was referenced by [l:192{96}]\"Microsoft-Windows-OpticalMediaDisc-Package~31bf3856ad364e35~x86~~6.1.7601.17514.OpticalMediaDisc\"\n" "2018-05-17 04:04:15, Info CSI 000000ea [SR] Cannot repair member file [l:34{17}]\"R000000000001.clb\" of Microsoft-Windows-COM-ComPlus-Runtime, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:04:15, Info CSI 000000eb [SR] This component was referenced by [l:198{99}]\"Microsoft-Windows-Foundation-Package~31bf3856ad364e35~x86~~6.1.7601.17514.WindowsFoundationDelivery\"\n" "2018-05-17 04:04:16, Info CSI 000000ec [SR] Cannot repair member file [l:18{9}]\"MSDTC.LOG\" of Microsoft-Windows-COM-DTC-Runtime, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:04:16, Info CSI 000000ed [SR] This component was referenced by [l:198{99}]\"Microsoft-Windows-Foundation-Package~31bf3856ad364e35~x86~~6.1.7601.17514.WindowsFoundationDelivery\"\n" "2018-05-17 04:04:18, Info CSI 000000ef [SR] Verify complete\n" "2018-05-17 04:04:21, Info CSI 000000f0 [SR] Verifying 100 (0x00000064) components\n" "2018-05-17 04:04:21, Info CSI 000000f1 [SR] Beginning Verify and Repair transaction\n" "2018-05-17 04:04:29, Info CSI 000000f2 [SR] Cannot repair member file [l:20{10}]\"system.ini\" of Microsoft-Windows-CoreOS, Version = 6.1.7601.18288, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:04:29, Info CSI 000000f3 [SR] Cannot repair member file [l:14{7}]\"win.ini\" of Microsoft-Windows-CoreOS, Version = 6.1.7601.18288, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 03:56:51, Info CSI 00000015 [SR] Cannot repair member file [l:28{14}]\"jsc.exe.config\" of jsc, Version = 6.1.7601.18523, pA = PROCESSOR_ARCHITECTURE_MSIL (8), Culture neutral, VersionScope neutral, PublicKeyToken = {l:8 b:b03f5f7f11d50a3a}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 03:57:00, Info CSI 00000016 [SR] Cannot repair member file [l:28{14}]\"jsc.exe.config\" of jsc, Version = 6.1.7601.18523, pA = PROCESSOR_ARCHITECTURE_MSIL (8), Culture neutral, VersionScope neutral, PublicKeyToken = {l:8 b:b03f5f7f11d50a3a}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:00:11, Info CSI 00000060 [SR] Cannot repair member file [l:32{16}]\"RSMGRSTR.dll.mui\" of brmfcmf.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:00:15, Info CSI 00000061 [SR] Cannot repair member file [l:30{15}]\"BrSerId.sys.mui\" of brmfport.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:00:18, Info CSI 00000062 [SR] Cannot repair member file [l:30{15}]\"BrSerId.sys.mui\" of brmfport.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:00:18, Info CSI 00000064 [SR] Cannot repair member file [l:32{16}]\"RSMGRSTR.dll.mui\" of brmfcmf.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:00:21, Info CSI 0000006a [SR] Cannot repair member file [l:34{17}]\"caspol.exe.config\" of caspol, Version = 6.1.7601.18523, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope neutral, PublicKeyToken = {l:8 b:b03f5f7f11d50a3a}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:00:25, Info CSI 0000006b [SR] Cannot repair member file [l:34{17}]\"caspol.exe.config\" of caspol, Version = 6.1.7601.18523, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope neutral, PublicKeyToken = {l:8 b:b03f5f7f11d50a3a}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:06, Info CSI 00000081 [SR] Cannot repair member file [l:32{16}]\"hpowiav1.dll.mui\" of hpoa1ss.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:13, Info CSI 00000082 [SR] Cannot repair member file [l:32{16}]\"i8042prt.sys.mui\" of keyboard.inf.Resources, Version = 6.1.7601.17514, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:18, Info CSI 00000083 [SR] Cannot repair member file [l:20{10}]\"secdrv.sys\" of Macrovision-Protection-SafeDisc, Version = 6.1.7601.18977, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:21, Info CSI 00000084 [SR] Cannot repair member file [l:32{16}]\"i8042prt.sys.mui\" of keyboard.inf.Resources, Version = 6.1.7601.17514, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:22, Info CSI 00000086 [SR] Cannot repair member file [l:32{16}]\"hpowiav1.dll.mui\" of hpoa1ss.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:22, Info CSI 00000088 [SR] Cannot repair member file [l:20{10}]\"secdrv.sys\" of Macrovision-Protection-SafeDisc, Version = 6.1.7601.18977, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:25, Info CSI 0000008e [SR] Cannot repair member file [l:30{15}]\"BrSerIb.sys.mui\" of mdmbr004.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:25, Info CSI 0000008f [SR] Cannot repair member file [l:30{15}]\"BrSerIb.sys.mui\" of mdmbr005.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:25, Info CSI 00000090 [SR] Cannot repair member file [l:30{15}]\"BrSerIb.sys.mui\" of mdmbr006.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:25, Info CSI 00000091 [SR] Cannot repair member file [l:30{15}]\"BrSerIb.sys.mui\" of mdmbr007.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:26, Info CSI 00000092 [SR] Cannot repair member file [l:30{15}]\"BrSerIb.sys.mui\" of mdmbr008.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:26, Info CSI 00000093 [SR] Cannot repair member file [l:30{15}]\"BrSerIb.sys.mui\" of mdmbr00a.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:34, Info CSI 00000094 [SR] Cannot repair member file [l:30{15}]\"BrSerIb.sys.mui\" of mdmbr005.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:35, Info CSI 00000096 [SR] Cannot repair member file [l:30{15}]\"BrSerIb.sys.mui\" of mdmbr006.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:35, Info CSI 00000098 [SR] Cannot repair member file [l:30{15}]\"BrSerIb.sys.mui\" of mdmbr007.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:35, Info CSI 0000009a [SR] Cannot repair member file [l:30{15}]\"BrSerIb.sys.mui\" of mdmbr008.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:35, Info CSI 0000009c [SR] Cannot repair member file [l:30{15}]\"BrSerIb.sys.mui\" of mdmbr00a.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:01:35, Info CSI 0000009e [SR] Cannot repair member file [l:30{15}]\"BrSerIb.sys.mui\" of mdmbr004.inf.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:03:42, Info CSI 000000d6 [SR] Cannot repair member file [l:32{16}]\"WMM2CLIP.dll.mui\" of Microsoft-Windows-ClipsInTheLibrary.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:03:53, Info CSI 000000d7 [SR] Cannot repair member file [l:32{16}]\"WMM2CLIP.dll.mui\" of Microsoft-Windows-ClipsInTheLibrary.Resources, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture = [l:10{5}]\"en-US\", VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:04:01, Info CSI 000000de [SR] Cannot repair member file [l:24{12}]\"WMM2CLIP.dll\" of Microsoft-Windows-ClipsInTheLibrary, Version = 6.1.7601.17514, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:04:01, Info CSI 000000df [SR] Cannot repair member file [l:22{11}]\"Filters.xml\" of Microsoft-Windows-ClipsInTheLibrary, Version = 6.1.7601.17514, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:04:05, Info CSI 000000e0 [SR] Cannot repair member file [l:34{17}]\"R000000000001.clb\" of Microsoft-Windows-COM-ComPlus-Runtime, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:04:08, Info CSI 000000e1 [SR] Cannot repair member file [l:18{9}]\"MSDTC.LOG\" of Microsoft-Windows-COM-DTC-Runtime, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:04:14, Info CSI 000000e2 [SR] Cannot repair member file [l:24{12}]\"WMM2CLIP.dll\" of Microsoft-Windows-ClipsInTheLibrary, Version = 6.1.7601.17514, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:04:14, Info CSI 000000e5 [SR] Cannot repair member file [l:22{11}]\"Filters.xml\" of Microsoft-Windows-ClipsInTheLibrary, Version = 6.1.7601.17514, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:04:15, Info CSI 000000ea [SR] Cannot repair member file [l:34{17}]\"R000000000001.clb\" of Microsoft-Windows-COM-ComPlus-Runtime, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:04:16, Info CSI 000000ec [SR] Cannot repair member file [l:18{9}]\"MSDTC.LOG\" of Microsoft-Windows-COM-DTC-Runtime, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:04:29, Info CSI 000000f2 [SR] Cannot repair member file [l:20{10}]\"system.ini\" of Microsoft-Windows-CoreOS, Version = 6.1.7601.18288, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "2018-05-17 04:04:29, Info CSI 000000f3 [SR] Cannot repair member file [l:14{7}]\"win.ini\" of Microsoft-Windows-CoreOS, Version = 6.1.7601.18288, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file cannot be checked\n" "x86_microsoft-windows-b..-ultimate.resources_31bf3856ad364e35_6.1.7600.16385_en-us_03f7020a761db3d1\n" "2018-05-17 04:03:39, Info CSI 000000d0 Ignoring duplicate ownership for directory [l:62{31}]\"\\??\\C:\\Windows\\Branding\\Basebrd\" in component Microsoft-Windows-Branding-Base-Ultimate, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral\n") matches = re.finditer(regex, test_str, re.MULTILINE | re.IGNORECASE) for matchNum, match in enumerate(matches, start=1): print ("Match {matchNum} was found at {start}-{end}: {match}".format(matchNum = matchNum, start = match.start(), end = match.end(), match = match.group())) for groupNum in range(0, len(match.groups())): groupNum = groupNum + 1 print ("Group {groupNum} found at {start}-{end}: {group}".format(groupNum = groupNum, start = match.start(groupNum), end = match.end(groupNum), group = match.group(groupNum))) # Note: for Python 2.7 compatibility, use ur"" to prefix the regex and u"" to prefix the test string and substitution.

Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for Python, please visit: https://docs.python.org/3/library/re.html