Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93
/home/sportsfe.../httpdocs/wp-conte.../plugins/wp-file-.../lib/codemirr.../mode/sas
File: index.html
<!doctype html>
[0] Fix | Delete
[1] Fix | Delete
<title>CodeMirror: SAS mode</title>
[2] Fix | Delete
<meta charset="utf-8"/>
[3] Fix | Delete
<link rel=stylesheet href="../../doc/docs.css">
[4] Fix | Delete
[5] Fix | Delete
<link rel="stylesheet" href="../../lib/codemirror.css">
[6] Fix | Delete
<script src="../../lib/codemirror.js"></script>
[7] Fix | Delete
<script src="../xml/xml.js"></script>
[8] Fix | Delete
<script src="sas.js"></script>
[9] Fix | Delete
<style type="text/css">
[10] Fix | Delete
.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}
[11] Fix | Delete
.cm-s-default .cm-trailing-space-a:before,
[12] Fix | Delete
.cm-s-default .cm-trailing-space-b:before {position: absolute; content: "\00B7"; color: #777;}
[13] Fix | Delete
.cm-s-default .cm-trailing-space-new-line:before {position: absolute; content: "\21B5"; color: #777;}
[14] Fix | Delete
</style>
[15] Fix | Delete
<div id=nav>
[16] Fix | Delete
<a href="http://codemirror.net"><h1>CodeMirror</h1><img id=logo src="../../doc/logo.png"></a>
[17] Fix | Delete
[18] Fix | Delete
<ul>
[19] Fix | Delete
<li><a href="../../index.html">Home</a>
[20] Fix | Delete
<li><a href="../../doc/manual.html">Manual</a>
[21] Fix | Delete
<li><a href="https://github.com/codemirror/codemirror">Code</a>
[22] Fix | Delete
</ul>
[23] Fix | Delete
<ul>
[24] Fix | Delete
<li><a href="../index.html">Language modes</a>
[25] Fix | Delete
<li><a class=active href="#">SAS</a>
[26] Fix | Delete
</ul>
[27] Fix | Delete
</div>
[28] Fix | Delete
[29] Fix | Delete
<article>
[30] Fix | Delete
<h2>SAS mode</h2>
[31] Fix | Delete
<form><textarea id="code" name="code">
[32] Fix | Delete
libname foo "/tmp/foobar";
[33] Fix | Delete
%let count=1;
[34] Fix | Delete
[35] Fix | Delete
/* Multi line
[36] Fix | Delete
Comment
[37] Fix | Delete
*/
[38] Fix | Delete
data _null_;
[39] Fix | Delete
x=ranuni();
[40] Fix | Delete
* single comment;
[41] Fix | Delete
x2=x**2;
[42] Fix | Delete
sx=sqrt(x);
[43] Fix | Delete
if x=x2 then put "x must be 1";
[44] Fix | Delete
else do;
[45] Fix | Delete
put x=;
[46] Fix | Delete
end;
[47] Fix | Delete
run;
[48] Fix | Delete
[49] Fix | Delete
/* embedded comment
[50] Fix | Delete
* comment;
[51] Fix | Delete
*/
[52] Fix | Delete
[53] Fix | Delete
proc glm data=sashelp.class;
[54] Fix | Delete
class sex;
[55] Fix | Delete
model weight = height sex;
[56] Fix | Delete
run;
[57] Fix | Delete
[58] Fix | Delete
proc sql;
[59] Fix | Delete
select count(*)
[60] Fix | Delete
from sashelp.class;
[61] Fix | Delete
[62] Fix | Delete
create table foo as
[63] Fix | Delete
select * from sashelp.class;
[64] Fix | Delete
[65] Fix | Delete
select *
[66] Fix | Delete
from foo;
[67] Fix | Delete
quit;
[68] Fix | Delete
</textarea></form>
[69] Fix | Delete
[70] Fix | Delete
<script>
[71] Fix | Delete
var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
[72] Fix | Delete
mode: 'sas',
[73] Fix | Delete
lineNumbers: true
[74] Fix | Delete
});
[75] Fix | Delete
</script>
[76] Fix | Delete
[77] Fix | Delete
<p><strong>MIME types defined:</strong> <code>text/x-sas</code>.</p>
[78] Fix | Delete
[79] Fix | Delete
</article>
[80] Fix | Delete
[81] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function