{"id":179,"date":"2009-02-05T14:47:47","date_gmt":"2009-02-05T13:47:47","guid":{"rendered":"http:\/\/www.naughtynathan.co.uk\/?p=179"},"modified":"2024-04-29T21:00:21","modified_gmt":"2024-04-29T20:00:21","slug":"syntax-testing","status":"publish","type":"post","link":"https:\/\/www.naughtynathan.co.uk\/?p=179","title":{"rendered":"Syntax Testing"},"content":{"rendered":"<pre class=\"brush:mel; wrap-lines:false;\">\/\/\n\/\/ removeInvalid: takes an input string and returns a valid \n\/\/ DAG name string (alpha-numerics only)\n\/\/\n\/\/ $mode: 0=strip , 1=replace_\nglobal proc string removeInvalid(string $input, int $mode)\n{\n\tstring $output = \"\";\n\tfor ($n = 1 ; $n &lt; size($input)+1 ; $n++)\n\t{\n\t\tstring $char = `substring $input $n $n`;\n\t\tif ($n == 1 &amp;&amp; `match \"[0-9]\" $char` != \"\")\n\t\t\t$output += (\"_\"+$char);\n\t\telse\tif (`match \"[a-zA-Z0-9_]\" $char` != \"\")\n\t\t\t$output += $char;\n\t\telse\tif ($mode)\n\t\t\t$output += \"_\";\n\t}\n\treturn $output;\n}<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\/\/ \/\/ removeInvalid: takes an input string and returns a valid \/\/ DAG name string (alpha-numerics only) \/\/ \/\/ $mode: 0=strip , 1=replace_ global proc string removeInvalid(string $input, int $mode) { string $output = &#8220;&#8221;; for ($n = 1 ; $n &lt; size($input)+1 ; $n++) { string $char = `substring $input $n $n`; if ($n [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[],"class_list":["post-179","post","type-post","status-publish","format-standard","hentry","category-mel"],"_links":{"self":[{"href":"https:\/\/www.naughtynathan.co.uk\/index.php?rest_route=\/wp\/v2\/posts\/179","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.naughtynathan.co.uk\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.naughtynathan.co.uk\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.naughtynathan.co.uk\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.naughtynathan.co.uk\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=179"}],"version-history":[{"count":40,"href":"https:\/\/www.naughtynathan.co.uk\/index.php?rest_route=\/wp\/v2\/posts\/179\/revisions"}],"predecessor-version":[{"id":971,"href":"https:\/\/www.naughtynathan.co.uk\/index.php?rest_route=\/wp\/v2\/posts\/179\/revisions\/971"}],"wp:attachment":[{"href":"https:\/\/www.naughtynathan.co.uk\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=179"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.naughtynathan.co.uk\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=179"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.naughtynathan.co.uk\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=179"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}