my $CLIP= Win32::Clipboard();
my @text = $CLIP->GetText();
print @text;
print "Done\n";
while(my $line=$CLIP->GetText()){
my $stringLng = length($line); #Get string Length
my $area = index($line, "released"); # GET POSITION OF WORD RELEASED
my $f_string = substr($line,0, $area); #Remove...
I want to parse model numbers based on clipboard copy. Text looks like this.
20 3 - - GG225FZTQ00 22 CU FF CHEST SPHINKTER released 1.000000 M model I 01-Jan-1900
20 3 - - GG225FZTQ11 22 CU FF CHEST SPHINKTER released 1.000000 M model I 01-Jan-1900
I want to have just...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.