Data update

This commit is contained in:
Ingy döt Net 2024-11-04 20:28:54 -08:00
parent 52a6ef48dd
commit 157b70a810
604 changed files with 14253 additions and 2100 deletions

View file

@ -0,0 +1,20 @@
void local fn DoIt
CFStringRef string = @"I am a string"
CFStringRef fmt = @".*string$"
PredicateRef pred = fn PredicateWithFormat( @"SELF MATCHES %@", fmt )
if ( fn PredicateEvaluateWithObject( pred, string ) )
printf @"\"%@\" ends with \"string\"",string
end if
print
CFStringRef orig = @"I am the original string"
RegularExpressionRef regex = fn RegularExpressionWithPattern( @"original", 0, NULL )
CFStringRef result = fn RegularExpressionStringByReplacingMatches( regex, orig, 0, fn CFRangeMake(0,len(orig)), @"modified" )
print result
end fn
fn DoIt
HandleEvents