Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
3answers
205 views

How can I create a qr// in Perl 5.12 from C?

This has been working for me in 5.8 and 5.10, but in 5.12 my code creates this weird non-qr object: # running "print Dumper($regex)" $VAR1 = bless( do{\(my $o = '')}, 'Regexp' ); Whereas printing a ...
4
votes
3answers
118 views

How to add a modifier to a quoted regular (qr) expression

Is there an easy way to add regex modifiers such as 'i' to a quoted regular expression? For example: $pat = qr/F(o+)B(a+)r/; $newpat = $pat . 'i'; # This doesn't work The only way I can think of is ...
4
votes
2answers
3k views

Perl qr// and substitution

I'm writing a tiny program that takes user input using Getops, and based on it, the program will either try to match a pattern against some text, or substitute text for what matched. The problem I'm ...
3
votes
3answers
5k views

What characters must I escape in a Perl pre-compiled regex?

I'm having a hard time determining what characters must be escaped when using Perl's qr{} construct I'm attempting to create a multi-line precompiled regex for text that contains a myriad of normally ...
1
vote
1answer
76 views

QR code, can be generated with R?

Can QR codes can be generated in R? Is there is a package that allows it?
1
vote
0answers
38 views

How to automatically generate QR codes with “subtext”

I want to automatically generate QR codes that display the content of the QR code (a transaction ID) beneath it. Then end product should be a pic (ideally png) with code + text in it. I have been ...
0
votes
1answer
14 views

Calling url to open by text string

Ok so im making an app that involve a qr scanner on result i have text showing with the url of the code is there any way in an onclick listener to call the text from the result and open it in the ...
0
votes
0answers
6 views

Google Qr Code convert to Image without saving?

I have this challenge in one work of mine. I have to render a page to be a PDF. Now, I need to render a QR Code (example: ...
0
votes
1answer
55 views

batch scan qr codes that contain an email address and message and auto send the emails once scanned

I want to do a logistics project that entails scanning alot of qr codes(500) all of which contain a unique email address and message. I've seen scanner apps that will batch scan them but in order to ...
0
votes
0answers
23 views

iPhone/iPad QR code reading app to place a URL in front of the QR's content

I am looking for an iPhone/iPad app that will allow me to place a URL in front of the QR code's content. For example, if the QR code contains the text "12345", then I would like to be able to add ...