Categories:
Administration (10)
Adware Spyware (7)
Apache (10)
Bluetooth (125)
DOS Commands (1)
Edge (28)
General (2)
Internet Explorer (217)
Media Center (12)
Media Player (11)
Mozilla Firefox (18)
PHP (15)
Programming (8)
Security (4)
Silverlight (15)
Tips (17)
Tools (218)
Tutorials (5)
Windows 10 (166)
Windows 7 (636)
Windows 8 (1091)
Windows Phone (33)
Windows Server 2008 (165)
Windows Server 2012 (84)
Windows Server 2016 (23)
Windows Vista (52)
Collections:
Other Resources:
Get Sub-String from Variable
How to get a sub-string from a string batch variable?
✍: FYIcenter.com
You can get a sub-string from a string batch variable
using the following variable modifier:
%variable~i,l%
In the above expression, "i" is the offset position of the sub-string to be extracted, and "l" is the length of the sub-string to be extracted.
If "i" is negative, the offset is counted from the end of the string. If "l" is negative, the length is the calculated from total number of characters in the string.
Examples of sub-string modifiers:
rem Get 5 characters starting from 11th set test=%java_home:~10,5% rem Get last 10 characters set test=%java_home:~-10% rem Get all characters except the last 2 characters set test=%java_home:~0,-2%
⇒ Batch Command Help Reference Documents
⇐ String Variable Match and Replace
2021-10-10, 1151👍, 0💬
Popular Posts:
How to tell Apache server to transform (rewrite) URL? Assuming that you have your Apache server runn...
What is the "SCNotification.exe" process on windows 7? Is the "SCNotification.exe" process a virus? ...
What is "SMS Task Sequence Agent" in my Windows 7 service list? And how is "SMS Task Sequence Agent"...
Can I disable Windows service "Remote Procedure Call (RPC)" to speedup my computer? Windows service ...
Where to find tutorials as Introduction to Internet Explorer (IE). Here is a list of tutorials to an...