Search found 6 matches
- 05 Dec 2014 07:59
- Forum: DOS Batch Forum
- Topic: Use Characters ÅÄÖ and other Country/region Characters
- Replies: 2
- Views: 2831
- 05 Dec 2014 04:39
- Forum: DOS Batch Forum
- Topic: Use Characters ÅÄÖ and other Country/region Characters
- Replies: 2
- Views: 2831
Use Characters ÅÄÖ and other Country/region Characters
Greetings! If you do this in your batch script "@echo åäö" e.g. your command prompt terminal will show you some strange letters... how to fix this fast any easy? Code page Country/region or language 437 United States 850 Multilingual (Latin I) 852 Slavic (Latin II) 855 Cyrillic (Russian) 8...
- 02 Dec 2014 08:44
- Forum: DOS Batch Forum
- Topic: String from file, how to set it as a Variable?
- Replies: 15
- Views: 11612
Re: String from file, how to set it as a Variable?
Post above was Javascript..
- 02 Dec 2014 03:15
- Forum: DOS Batch Forum
- Topic: String from file, how to set it as a Variable?
- Replies: 15
- Views: 11612
Re: String from file, how to set it as a Variable?
<?PHP $html = file_get_contents('http://www.tibia.com/community/?subtopic=characters&name=Antizo'); $getvocation = strpos($html, 'Vocation:'); $findend = strpos($html, '</tr>', $getvocation); $findstring = substr($html, $getvocation, $findend-$getvocation); $vocation = str_replace('Vocation:',''...
- 01 Dec 2014 12:05
- Forum: DOS Batch Forum
- Topic: String from file, how to set it as a Variable?
- Replies: 15
- Views: 11612
Re: String from file, how to set it as a Variable?
Sweet!
Yes as Local IP
External IP if you know how to also hehe
Yes as Local IP
External IP if you know how to also hehe
- 28 Nov 2014 10:49
- Forum: DOS Batch Forum
- Topic: String from file, how to set it as a Variable?
- Replies: 15
- Views: 11612
String from file, how to set it as a Variable?
Greetings! Anyone who can salve this ? How to set specific word in string to a variabel and later on echo it? #Batch.bat echo Ipconfigurations to file. ipconfig > File.txt #File.txt Text ....... #Call Batch2.bat from Command prompt type File.txt | findstr exactly "192" :: set selected stri...