Using perl inside Objective-C?

CPAN has a ton of very useful libraries. With the exception of porting them to Objective-C, is there a way to embed perl code in Objective-C in iOS? I'm particularly interested in using Spreadsheet :: Read to read Excel file data (and no, I don't want to force users to save their files as CSV again).

+4
source share
2 answers

Have you read perldoc perlembed , which describes how to embed perl in a C program?

+3
source

Run perl script with NSTask ().

+1
source

Source: https://habr.com/ru/post/1346484/


All Articles