pyspark.sql.DataFrame.colRegex

DataFrame。 colRegex ( colName:str )→pyspark.sql.column.Column

基於列的選擇列名稱指定為一個正則表達式並返回它

參數
colName str

字符串,列名稱指定為一個正則表達式。

例子

> > >df=火花createDataFrame(((“一個”,1),(“b”,2),(“c”,3)),(“Col1”,“Col2”])> > >df選擇(dfcolRegex(“‘(Col1) ? + + '。”))顯示()+ - - - +| Col2 |+ - - - +| 1 || 2 || 3 |+ - - - +