You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "zhangxin (JIRA)" <ji...@apache.org> on 2017/06/30 03:00:00 UTC

[jira] [Created] (SPARK-21261) SparkSQL regexpExpressions example

zhangxin created SPARK-21261:
--------------------------------

             Summary: SparkSQL regexpExpressions example 
                 Key: SPARK-21261
                 URL: https://issues.apache.org/jira/browse/SPARK-21261
             Project: Spark
          Issue Type: Documentation
          Components: Examples
    Affects Versions: 2.1.1
            Reporter: zhangxin


The follow execute result.

scala> spark.sql(""" select regexp_replace('100-200', '(\d+)', 'num') """).show
+----------------------------------+
|regexp_replace(100-200, (d+), num)|
+----------------------------------+
|                           100-200|
+----------------------------------+
scala> spark.sql(""" select regexp_replace('100-200', '(\\d+)', 'num') """).show
+-----------------------------------+
|regexp_replace(100-200, (\d+), num)|
+-----------------------------------+
|                            num-num|
+-----------------------------------+
Add Comment



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org