1
私は列を含むデータフレームを持っています。このコラムでは、私はSparkRを使用して列に特殊文字を置き換えます
<a href="mailto:[email protected]">[email protected]</a>
<a href="mailto:[email protected]">[email protected]</a>…
以下のような文字列に何かを持っているしかし、私はちょうど私が
df$EMAIL_ADDR <- SparkR::substring_index(df$EMAIL_ADDR, "<", -1)
df$EMAIL_ADDR <- SparkR::substring_index(df$EMAIL_ADDR, ">", 1)
しかし、列以下のように、substring_indexを使用してみました、私のコラムでは、以下の値
[email protected]
[email protected]
が必要値は変更されません。私は別のint値でも試しました。
すべてのヘルプは本当に基本的な正規表現の使用