My Flow有属性' 05-05-2015'。我需要在NiFi中找到一周的日期。
For example:
if date is 05 then it is belongs to 1st week of the year.
我不应该使用脚本/程序来查找一周。
我需要发现仅使用NiFi表达语言。
有人可以建议这样做吗?
答案 0 :(得分:2)
假设eee
是您的属性
然后表达
${eee:toDate('MM-dd-yyyy'):format('u E')}
输出:
2 Tue
格式参考:
http://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html