cs2103aug2014-w13-2j / main

To-Do list program for CS2103T @ NUS
MIT License
1 stars 0 forks source link

[Parser] Improve on the escaping of words using ';' as escaping character #93

Closed nhan-ng closed 10 years ago

nhan-ng commented 10 years ago

Currently not fully supported

nhan-ng commented 10 years ago

The case where this feature is necessary is: The user wants to add just a deadline task but the description contains a valid start time token.

"add Watching the movie From yesterday by next Friday"

The user wants to add Watching the movie titled "From yesterday" by the next Friday, but Dynamiz will parse it as an event item. Hence to avoid this, the user will have to enter

"add Watching the movie ;From yesterday by next Friday" to escape the From yesterday token from being parsed.

nhan-ng commented 10 years ago

Implemented

image