<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Форум компьютерной помощи &mdash; Вырезать из строки подстроку. Удаление спецсимволов из строки.]]></title>
	<link rel="self" href="https://itpmr.ru/extern.php?action=feed&amp;tid=899&amp;type=atom" />
	<updated>2015-03-25T12:04:03Z</updated>
	<generator>PunBB</generator>
	<id>https://itpmr.ru/viewtopic.php?id=899</id>
		<entry>
			<title type="html"><![CDATA[Вырезать из строки подстроку. Удаление спецсимволов из строки.]]></title>
			<link rel="alternate" href="https://itpmr.ru/viewtopic.php?pid=124287#p124287" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>    
zag$ =    Left(Replace (zag$,|&quot;|,&quot;&quot;),30)
    string0 = Chr(10) &#039;   ВОЗМОЖНО НАДО ДОБАВИТЬ В АГЕНТ!
    string1 = Chr(13)
    If Instr (zag$, string1) Then
        While Instr(1, zag$, string1)
            &#039;Msgbox &quot;перенос&quot;
            zag$ = Left(zag$, Instr(1, zag$, string0) - 1) + &quot; &quot; + Mid(zag$, Instr(1, zag$, string0) + Len(string0))
            zag$ = Left(zag$, Instr(1, zag$, string1) - 1) + &quot; &quot; + Mid(zag$, Instr(1, zag$, string1) + Len(string1))    
        Wend    
    End If    </code></pre></div>]]></content>
			<author>
				<name><![CDATA[admin]]></name>
				<uri>https://itpmr.ru/profile.php?id=2</uri>
			</author>
			<updated>2015-03-25T12:04:03Z</updated>
			<id>https://itpmr.ru/viewtopic.php?pid=124287#p124287</id>
		</entry>
</feed>
