Link to home
Start Free TrialLog in
Avatar of eboen
eboen

asked on

form question: 10,000 characters

Implementation Question.

I have a form that needs to accept up to 10,000 characters (DNA sequence info). I need a script to examine every character(delete "eol" char and potentially change ambiguous chars). I believe string variables in Perl can only be 256 char long.  Do I need to pass each line of form to the script, then create an array? Is there a way to read and pass individual char from the form to an array?  Need to use Perl even though not alot of experience, novice with C and C++.  Thanks

eboen
ASKER CERTIFIED SOLUTION
Avatar of akf
akf

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of eboen
eboen

ASKER

Thanks for the input. With your advice and some input from others I think I got it.