How can I get sub-string from one specific character to another one?
For example if I have this format:
string someString = \"1.7,2015-05-21T09:18:58;\";
Use regex,
@"(?<=,).*?(?=;)"
This would extract all the chars next to , symbol upto the first semicolon.
,