הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
Selects column based on the column name specified as a regex and returns it as Column.
Syntax
colRegex(colName: str)
Parameters
| Parameter | Type | Description |
|---|---|---|
colName |
str | string, column name specified as a regex. |
Returns
Column
Examples
df = spark.createDataFrame([("a", 1), ("b", 2), ("c", 3)], ["Col1", "Col2"])
df.select(df.colRegex("`(Col1)?+.+`")).show()
# +----+
# |Col2|
# +----+
# | 1|
# | 2|
# | 3|
# +----+