摘要:
在Python中自定义的函数可以有三类不同的参数 formal parameters positional arguments Keyword Arguments When a final formal parameter of the form **name is present, it rece 阅读全文
摘要:
想使用scala的正则表达式,需要首先导入 import scala.util.matching.Regex 然后就可以使用了,实例如下: val pattern = new Regex("^(Name[(](LNG|FSN)[)])") val str ="Name(FSN)fefefefef" 阅读全文