Speak now
Please Wait Image Converting Into Text...
Embark on a journey of knowledge! Take the quiz and earn valuable credits.
Challenge yourself and boost your learning! Start the quiz now to earn credits.
Unlock your potential! Begin the quiz, answer questions, and accumulate credits along the way.
Course Queries Syllabus Queries 2 years ago
Posted on 16 Aug 2022, this text provides information on Syllabus Queries related to Course Queries. Please note that while accuracy is prioritized, the data presented might not be entirely correct or up-to-date. This information is offered for general knowledge and informational purposes only, and should not be considered as a substitute for professional advice.
Turn Your Knowledge into Earnings.
I've found several examples of extractions before a single character and examples of extracting numbers, but I haven't found anything about extracting characters before numbers.
My question: Some of the strings I have look like this:
NUC320 Syllabus Template - 8wk SLA School Template - UL CJ101 Syllabus Template - 8wk TECH201 Syllabus Template - 8wk Test Clone ID17
In cases where the string doesn't contain the data I want, I need it to be skipped. The desired output would be:
NUC-320 CJ-101 TECH-201
SLA School Template - UL & Test Clone ID17 would be skipped.
SLA School Template - UL
Test Clone ID17
I imagine the process being something to the effect of:
" "
x
y
$x"-"$y
z
More information: The strings are extracted from a line in a couple thousand text docs using a loop. They will be used to append to a hyperlink and rename a file during the loop.
Edit:
#!/bin/sh # my files are named 1.txt through 9999.txt i both # increments the loop and sets the filename to be searched i=1 while [ $i -lt 10000 ] do x=$(head -n 31 $i.txt | tail -1 | cut -c 7-) if [ ! -z "$x" -a "$x" != " " ]; then # I'd like to insert the hyperlink with the output on the # same line (1.txt;cj101 Syllabus Template - 8wk;www.link.com/cj101) echo "$i.txt;$x" >> syllabus.txt # else # rm $i.txt fi i=`expr $i + 1` sleep .1 done
sed for printing lines starting with capital letters followed by digits. It also adds a - between them:
-
sed -n 's/^\([A-Z]\+\)\([0-9]\+\) .*/\1-\2/p' input
Gives:
No matter what stage you're at in your education or career, TuteeHub will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.
Course Queries 4 Answers
Course Queries 5 Answers
Course Queries 1 Answers
Course Queries 3 Answers
Ready to take your education and career to the next level? Register today and join our growing community of learners and professionals.