Yang

Results 27 comments of Yang

On windows, you can refer the solution in the following link. https://stackoverflow.com/questions/34363477/pystan-compileerror-command-gcc-failed-with-exit-status-1-windows

> print(ex.extract_cellphone(str,nation='CHN')) > ['410105196904010537', '13673630861.'] > 下面是我用正则表达式匹配的 > import re > re.search(r'^\d{15}|\d{18}|\d{17}(\d|X|x)',str).group() > '410105196904010537' > re.search(r'(^(\d{3,4}-)?\d{7,8})$|(13[0-9]{9})',str).group() > '13673630861' Thanks for your valuable comment. I fixed the bug in the new...

> @fighting41love > ![image](https://user-images.githubusercontent.com/24642133/50945114-30705f00-14ce-11e9-892b-4a9c112e8106.png) > 麻烦再请教个问题:抽取地址能不能把这一串都拿出来(河南省郑州市金水区金水路83号院2号楼14号) I will work on this problem in a few days. If you have some good solutions, pls leave a comment or commit your code...

> you new version also have bug,when it get cell phone numbuer ,there was a a point in the end. (e.g."13673630861.") > > ![image](https://user-images.githubusercontent.com/24642133/50953690-214dd900-14ef-11e9-883a-a2865fd8b519.png) Sorry for the inconvenience. Fix the...

> I encounter the same problem on my macOS, but I didn't find a solution for mac users, if possible, please help me solve it 😭 which bug? Could you...

> I think the error was caused by > `native/common/include/jpype.h:107:10: fatal error: 'map' file not found #include ^~~~~ 1 warning and 1 error generated.` Sorry for the late response. I...

正在python2.7上复现你的问题。 建议先使用python3.6,应该不会有任何问题。 可以使用anaconda 创建虚拟Python环境,还是挺好用的。