Regular expressions: Difference between revisions

m
Changed over to works with template
(added ocaml)
m (Changed over to works with template)
Line 7:
=={{header|AppleScript}}==
{{libheader|Satimage.osax}}
 
try
find text ".*string$" in "I am a string" with regexp
Line 21 ⟶ 20:
 
=={{header|C++}}==
{{works with|g++|4.0.2}}
 
*Compiler: g++ 4.0.2
{{libheader|Boost}}
 
#include <iostream>
#include <string>
Line 92 ⟶ 89:
 
=={{header|Java}}==
'''Compiler''':{{works with|Java |1.5+}}
 
Test
 
Line 147 ⟶ 143:
 
=={{header|Perl}}==
{{works with|Perl|5.8.8}}
 
'''Interpreter:''' [[Perl]] v5.8.8
 
Test
 
Line 185 ⟶ 179:
 
=={{header|PHP}}==
{{works with|PHP|5.2.0}}
 
'''Interpreter:''' [[PHP]] 5.2.0
$string = 'I am a string';
 
Line 202 ⟶ 195:
 
=={{header|Python}}==
{{works with|Python|2.5}}
 
'''Interpreter:''' [[Python]] 2.5
 
Setup
 
Anonymous user