regular expression: extract last 2 characters

Posted by dotnet-practitioner on Stack Overflow See other posts from Stack Overflow or by dotnet-practitioner
Published on 2010-03-24T21:35:12Z Indexed on 2010/03/24 21:53 UTC
Read the original article Hit count: 216

Filed under:

what is the best way to extract last 2 characters of a string using regular expression.

For example, I want to extract state code from the following

"A_IL"

I want to extract IL as string..

please provide me C# code on how to get it..

string fullexpression = "A_IL";
string StateCode = some regular expression code....

thanks

© Stack Overflow or respective owner

Related posts about regex