Search Results

Search: Posts Made By: girish.raos
3,351
Posted By Yogesh Sawant
check if this is what you are looking for: $word...
check if this is what you are looking for: $word = "DE_PR_Package__Basic";
if ($word=~ m/^DE/) {
print "matches\n";
}
else {
print "does not match\n";
}

in the regex, ^ is the start...
3,351
Posted By pludi
Depends on how you want to proceed with that...
Depends on how you want to proceed with that information. To just print the line if a word matches your requirements:perl -ne 'print if /\bDE_[\w_]+?/;' input.txt
If you want just the remainder of...
8,615
Posted By bigearsbilly
well, I haven't used XML::Simple. The work...
well, I haven't used XML::Simple.

The work I've been doing lately involves all sorts of XML processing:
creating, parsing, editing, extracting data with Xpath queries.
XML::Twig does all these...
Showing results 1 to 3 of 3

 
All times are GMT -4. The time now is 03:47 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy