Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/regex/16.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
在关键字python之后打印字符串_Python_Regex_String_File - Fatal编程技术网

在关键字python之后打印字符串

在关键字python之后打印字符串,python,regex,string,file,Python,Regex,String,File,我设法从txt文件中提取以下行 05/19/2014, 15:24:14.455> LVL:2 RC: 0 SERVER :server main: TERA_MGMT_SYS_SESS_EVENT_RESET with disconnect cause (0x105) 现在如何从中拉出105 #!/usr/bin/env python import sys, re, os lineContains = re.compile(r'(?=.*disconnect c

我设法从txt文件中提取以下行

05/19/2014, 15:24:14.455> LVL:2 RC:   0          SERVER :server main: TERA_MGMT_SYS_SESS_EVENT_RESET with disconnect cause (0x105)
现在如何从中拉出
105

#!/usr/bin/env python
import sys, re, os

lineContains = re.compile(r'(?=.*disconnect cause)')
lineContainsCode = re.compile(r'cause\s*\(.*?(\d+)\)')
filename = open ("pcoip_server_2014_05_19_00000560.txt", 'r')

for line in filename:
    if lineContains.match(line):
        print 'The file has: '
        print line
        code = lineContainsCode.search(line).group(1)
        print 'The code is:', code
        if code == 001:
            print 'PCoIP session terminated due to lost network.'
        elif code == 100:
            print 'PCoIP connection not established due to failure of PCoIP server initialization. This should not occur. Please contact Teradici support.'
        elif code == 101:
            print 'PCoIP connection not established due to failure of PCoIP server initialization. This should not occur in normal operation. Note: If the Welcome Screen is enable in the View Administrator a ConnectionTicketTimeout will trigger a disconnect after 15 min with this code'
        elif code == 102:
            print 'PCoIP session terminated due to VMware View Connection Server (broker) maximum session duration (Connection Server setting) exceeded.'
        elif code == 103:
            print 'PCoIP session terminated due to the VDI user selecting Logoff or Restart from Windows in the VDI session'
        elif code == 104:
            print 'PCoIP session terminated due to admin manually disconnected the session from the Administrative Web Interface.'
        elif code == 105:
            print 'PCoIP session terminated due to login from an alternate location OR Pre-connection warmup initialization of PCoIP Server. This is not for actual connection. If the size of the log is under 15 Kbytes, this is a pre-connection warmup startup/shutdown sequence.'
        elif code == 200:
            print 'PCoIP session terminated due to the user right-clicking the host driver icon in the tray and then selecting Menu > Disconnect. Applicable only to clients connecting to a hard host and not VDI.'
        elif code == 201:
            print 'PCoIP connection not established due to incompatible host driver version (not used for VDI).'
        elif code == 300:
            print 'PCoIP session terminated due to the user closing the View Client window or due to the user ending the View application task inside the Windows Task Manager'
        elif code == 301:
            print 'PCoIP session terminated due to the user clicking the zero client\'s Disconnect button. Not applicable for soft clients.'
        elif code == 302:
            print 'PCoIP session terminated due to the user clicking the Disconnect button in the client Administrative Web Interface. Not applicable for soft clients.'
        elif code == 303:
            print 'The VMware View Connection Server (broker) requested the session to end.'
        elif code == 304:
            print 'PCoIP session terminated due to Power Sleep disconnect (not used for VDI).'
        elif code == 305:
            print 'PCoIP session terminated due to user pulling out the smart card used for user authentication.'
        elif code == 306:
            print 'PCoIP session terminated due to user taking action specified by OneSign to be a disconnect command (for example, double tapping the card).'
        elif code == 400:
            print 'Zero client and View 4.5 and earlier: PCoIP session terminated due to network issues on TCP/SSL connection (keepalive ping timeout).'
        elif code == 401:
            print 'PCoIP connection not established due to networking issues or failure to open drivers, such as video, audio, or USB.'
        elif code == 402:
            print 'PCoIP connection not established due to networking issues.'
        elif code == 403:
            print 'PCoIP session terminated due to various reasons. For example, network lost or client/server crash.'
        elif code == 404:
            print 'PCoIP connection not established due to inability to use the VMware video driver on the server.'
        elif code == 405:
            print 'PCoIP connection not established due to client and server not having a common encryption method enabled.'
        elif code == 406:
            print 'Zero Client and View 4.5 and earlier: PCoIP session terminated due to network issues on TCP/SSL connection. Zero client and View 4.6 (and later). This is normal operation since the TCP/SSL connection is terminated right after session negotiation.'
        elif code == 407:
            print 'PCoIP connection not established due to the View Security Server detecting that AES encryption is disabled on either the client and/or server.'
        else:
            print 'code not found in KB.'

filename.close()
给出错误文件“pcoip\u disconnect\u codes.py”,第20行 elif代码==102: ^
缩进错误:未缩进与任何外部缩进级别不匹配

您可以尝试下面的正则表达式来获取
()
中的数字。下面的正则表达式包含字符串
cause
,因为它有助于正确匹配确切的行以及
()
中的数字

你的代码是

lineContainsCode = re.compile(r'cause \(.*?(\d+)\)')

对于非正则表达式方法:

code = line.split("(")[-1].split(")")[0].split("x")[-1]
# more readable:
# code = line.split("(")[-1]
#            .split(")")[0]
#            .split("x")[-1]
这将拆分所有文本打开参数上的字符串,并在
-1
上建立索引(即抓取最后一个)。然后在所有文本闭合区拆分,并在
0
上建立索引(即抓取第一个),然后在所有文本
“x”
s上拆分,并在
-1
上建立索引(即抓取最后一个)

导致
105

编辑HASHMAP示例:

code = lineContainsCode.search(line).group(1)
hashmap = {"001":'PCoIP session terminated due to lost network.',
           "100":'PCoIP connection not established due to failure of PCoIP server initialization. This should not occur. Please contact Teradici support.',           
            ...
           "407":'PCoIP connection not established due to the View Security Server detecting that AES encryption is disabled on either the client and/or server.'}
error_msg = hashmap.get(code,'code not found in KB.')
print(error_msg)

我用了这个,它打印出0x105,有没有办法只拉出105。我真的很不擅长,请@Adam Smith'code=lineContainsCode.search(line.group)(1)如果code='150',请打印代码:{print('see kb')}'尝试使用if,但似乎不起作用,并给我错误提示:文件“pcoip_disconnect_code.py”,第17行打印('see kb')^Syntaxer:无效syntax@user3731311你写python有多久了?不要用大括号来表示代码块……不太长,我也尝试过删除{}。在获得代码后,我尝试了“if code==150:print”使用此“”似乎不起作用work@Adam史密斯:谢谢你所做的一切help@user3731311如果没有看到完整的代码,很难说:)'code=lineContainsCode.search(line.group)(1)如果code='150',则打印代码:{print('see kb')}'尝试使用if但似乎不起作用,并给出错误提示:文件“pcoip_disconnect_codes.py”,第17行打印('see kb')^SyntaxError:invalid syntax@Rakesh KR
KEY: ---- items not selected
     ++++ items selected
       |  split point (NOT SELECTED)

1.
05/19/2014, 15:24:14.455> LVL:2 RC:   0          SERVER :server main: TERA_MGMT_SYS_SESS_EVENT_RESET with disconnect cause (0x105)
---------------------------------------------------------------------------------------------------------------------------|++++++

2.
0x105)
+++++|--

3.
0x105
-|+++
code = lineContainsCode.search(line).group(1)
hashmap = {"001":'PCoIP session terminated due to lost network.',
           "100":'PCoIP connection not established due to failure of PCoIP server initialization. This should not occur. Please contact Teradici support.',           
            ...
           "407":'PCoIP connection not established due to the View Security Server detecting that AES encryption is disabled on either the client and/or server.'}
error_msg = hashmap.get(code,'code not found in KB.')
print(error_msg)