Hello,
I would like to have only the last 2 digit of my string.
Exemple : I have a result in string "28C" but I would like only take 8C (the result change every time so this is only a exemple).
Can you help me please ?
Thanks.
해결되었습니다! 솔루션으로 이동.
Thank you very much.
@Zek67 wrote:I would like to have only the last 2 digit of my string.
Just to add to the fun...
String To Byte Array, Delete From Array with the length set to 2 (do not wire up the index), and then Byte Array To String with the "Deleted Subset".
@ben64 wrote:To add more: Match Regular Expression with the following regex .{2}$
Ben64
I always love it when one of the Gurus of Regex posts a regex solution to a string issue because I always learn from it. 🙂