would like to convert the following method from scala spark to pyspark

Programming with Microsoft Visual Basic 2017
8th Edition
ISBN:9781337102124
Author:Diane Zak
Publisher:Diane Zak
Chapter5: The Repetition Structure
Section: Chapter Questions
Problem 1MQ6: Write an Add method that adds the contents of the decPrice variable to the lstPrices control.
icon
Related questions
Question

would like to convert the following method from scala spark to pyspark

def  getCurrDateFromConfElseCurrentDt(curr_date: String): String={

var dt=""

if(curr_date.length>0 && isValidDateFrmt_yyyyMMdd(curr_date)){

dt=curr_date

}

else{

dt=LocalDate.now().format(DateTimeFormatter.ISO_LOCAL_DATE)

}

dt

}

def isValidDateFrmt_yyyyMMdd(dt: String):Boolean={

val isValid=true

val pattern="[0-9]{4}-[0-9]{2}-[0-9]{2}$"

try{

dt.matches(pattern)

}

catch{

case ex:ParseException=>{

}

}

isValid

}

Expert Solution
steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Fundamentals of Input and Output Performance
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Programming with Microsoft Visual Basic 2017
Programming with Microsoft Visual Basic 2017
Computer Science
ISBN:
9781337102124
Author:
Diane Zak
Publisher:
Cengage Learning