Skip to content

Instantly share code, notes, and snippets.

@binki
Last active March 28, 2019 21:15
Show Gist options
  • Save binki/a96bbf9a282616671ecd7386a9f17510 to your computer and use it in GitHub Desktop.
Save binki/a96bbf9a282616671ecd7386a9f17510 to your computer and use it in GitHub Desktop.
C:\Users\ohnob>SET _test=this is ab test of abs.
C:\Users\ohnob>ECHO %_test:*ab=%
test of abs.
C:\Users\ohnob>ECHO %_test:ab=%
this is test of s.
C:\Users\ohnob>ECHO %_test:*ab=%
test of abs.
C:\Users\ohnob>SET _test=this is a repeating this is a repeating string
C:\Users\ohnob>ECHO %_test:*ing=%
this is a repeating string
@binki
Copy link
Author

binki commented Mar 28, 2019

I think that this proves that https://stackoverflow.com/a/45969239/429091 is a reliable solution.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment