我希望有一个文本字段,表示某事物的时间量,将文本值(如'3d 4h'
)解析为小时。我提供的例子是3天,4小时 - 76小时。
在我开始使用自己的文本到数字解析器引擎之前,有没有人之前做过这样的事情,或者Extj4是否提供了一种简化此过程的方法?
谢谢!
答案 0 :(得分:0)
我在JS中没有看到这个。
您可能会从PHP的strtotime函数的源代码中获得一些灵感,它基本上可以满足您的需求:
https://github.com/php/php-src/blob/master/ext/date/php_date.c#L1324
其他选择:
regex for textual dates? (aka source code for php's strtotime )