Regular Expressions 101

Save & Share

Flavor

  • PCRE2 (PHP >=7.3)
  • PCRE (PHP <7.3)
  • ECMAScript (JavaScript)
  • Python
  • Golang
  • Java 8
  • .NET 7.0 (C#)
  • Rust
  • Regex Flavor Guide

Function

  • Match
  • Substitution
  • List
  • Unit Tests

Tools

Sponsors
There are currently no sponsors. Become a sponsor today!
An explanation of your regex will be automatically generated as you type.
Detailed match information will be displayed here automatically.
  • All Tokens
  • Common Tokens
  • General Tokens
  • Anchors
  • Meta Sequences
  • Quantifiers
  • Group Constructs
  • Character Classes
  • Flags/Modifiers
  • Substitution
  • A single character of: a, b or c
    [abc]
  • A character except: a, b or c
    [^abc]
  • A character in the range: a-z
    [a-z]
  • A character not in the range: a-z
    [^a-z]
  • A character in the range: a-z or A-Z
    [a-zA-Z]
  • Any single character
    .
  • Alternate - match either a or b
    a|b
  • Any whitespace character
    \s
  • Any non-whitespace character
    \S
  • Any digit
    \d
  • Any non-digit
    \D
  • Any word character
    \w
  • Any non-word character
    \W
  • Non-capturing group
    (?:...)
  • Capturing group
    (...)
  • Zero or one of a
    a?
  • Zero or more of a
    a*
  • One or more of a
    a+
  • Exactly 3 of a
    a{3}
  • 3 or more of a
    a{3,}
  • Between 3 and 6 of a
    a{3,6}
  • Start of string
    ^
  • End of string
    $
  • A word boundary
    \b
  • Non-word boundary
    \B

Regular Expression
No Match

r"
"
gm

Test String

Code Generator

Generated Code

# coding=utf8 # the above tag defines encoding for this document and is for Python 2.x compatibility import re regex = r"(?<=\n).*?\.+?(?=\n)" test_str = ("\"C:\\Program Files\\python3.6\\python.exe\" F:/PythonProject/BestuRobot/BestU/bot_spider/collegeMajorUrl_aiohttp.py\n" "开始爬取,过滤为cdu.edu.au\n\n" "开始爬取第0个url,https://www.cdu.edu.au/study/diploma-counselling-ycoun1-2019\n" "url,https://www.cdu.edu.au/study/diploma-counselling-ycoun1-2019关键词是:['2019', 'studi', 'ycoun1', 'counsel', 'diploma']\n" "url 匹配的概率是 7.0\n" "title,Diploma of Counselling (YCOUN1 - 2019) | Charles Darwin University 的关键字是{'diploma', 'counsel'}\n" "title 匹配的概率是 7.0\n" "body 匹配的概率是 7.0\n" "body Diploma of Counselling (YCOUN1 - 2019) | Charles Darwin University\n\n\n\n\n\n\n\n\n\n\n\n" " Skip to main content\n" " \n\n\n\n\n\n\n\n\n" " \n\n\n\n" "Phone: 1800 061 963\n" "Email: study@cdu.edu.au\n\n\n\n\n" " Request a call\n\n\n" " How to apply\n\n\n\n\n\n\n\n\n\n" " Australia\n\n" " \n" " Menu\n" " \n\n\n" " \n\n\n\n\n" "Study with CDU\n\n\n\n" "Find a course\n\n\n" "Accounting\n\n" "Browse by study area\n\n" "Business\n\n\n" "Community Services & Social Work\n\n\n" "Creative Arts & Design\n\n\n" "Culinary Arts\n\n\n" "Education\n\n\n" "Enabling Courses\n\n\n" "Engineering\n\n\n" "Exercise & Sport Science\n\n\n" "Hair & Beauty Services\n\n\n" "Health\n\n\n" "Humanities & Social Sciences\n\n\n" "Humanitarian, Emergency & Disaster Management\n\n\n" "Indigenous Knowledges\n\n\n" "IT & Network Engineering\n\n\n" "Languages\n\n\n" "Law & Legal Studies\n\n\n" "Nursing\n\n\n" "Primary Industries\n\n\n" "Psychology\n\n\n" "Public Health\n\n\n" "Science, Environmental Science & Management\n\n\n" "Tourism, Hospitality & Food\n\n\n" "Trades\n\n\n\n\n" "The essentials\n\n" "Everything you'll need to get started\n\n" "Why choose CDU\n\n\n" "Study pathways\n\n\n" "How to apply\n\n\n" "Aboriginal & Torres Strait Islander people \n\n\n" "Admission requirements\n\n\n" "How to enrol\n\n\n" "Course fees\n\n\n" "Scholarships\n\n\n" "English proficiency\n\n\n" "Student profile\n\n\n" "Important dates\n\n\n\n\n" "Student life\n\n" "On and off campus, what to expect\n\n" "Flexible study options\n\n\n" "Accommodation\n\n\n" "Student support \n\n\n" "Student and campus services\n\n\n" "Get started\n\n\n" "Settle in\n\n\n\n\n" "Why choose CDU\n\n" "Here are the reasons\n\n" "Study with a new world University \n\n\n" "Our achievements\n\n\n" "Learn more about CDU\n\n\n\n\n\n\n\n" "International\n\n\n" "Research\n\n\n" "Engage\n\n\n\n" "Engage with CDU \n\n\n" "CDU Alumni\n\n\n" "CDU Art Collection & Gallery\n\n\n" "CDU Foundation \n\n\n" "Indigenous Leadership & Engagement\n\n" "Engage with the CDU community \n\n" "Sponsorship\n\n\n\n\n" "Giving to CDU\n\n" "Engagement opportunities\n\n" "Other ways to support CDU\n\n\n" "Support CDU\n\n\n" "Support our students\n\n\n" "Supporting communities\n\n\n" "Supporting research\n\n\n\n\n" "Partnerships\n\n" "Ways to partner with CDU\n\n" "Why partner with CDU\n\n\n" "Consultancy\n\n\n" "NTG Partnership\n\n\n" "Partnerships and opportunities\n\n\n\n\n\n\n\n" "About CDU \n\n\n\n" "About CDU\n\n" "Learn more about our University\n\n" "Newsroom\n\n\n" "Events\n\n\n" "University profile\n\n\n" "Corporate information\n\n\n" "Learning & Teaching \n\n\n" "Structure & leadership\n\n\n" "University operations\n\n\n" "Partnerships & industry collaboration\n\n\n" "Campuses & centres\n\n\n\n\n" "Colleges and Faculties\n\n" "Colleges and Faculties\n\n" "College of Business and Law\n\n\n" "College of Education\n\n\n" "College of Engineering, IT & Environment\n\n\n" "College of Health & Human Sciences\n\n\n" "College of Indigenous Futures, Arts & Society\n\n\n" "College of Nursing & Midwifery\n\n\n" "Faculty of Vocational Education & Training (VET)\n\n\n\n\n\n\n\n" "Search\n\n\n" "Search Charles Darwin University for\n\n\n\n\n" " Search for\n" " \n\n\n\n\n\n" " General\n" " \n\n\n\n\n" " Staff\n" " \n\n\n\n\n" " Courses\n" " \n\n\n\n\n" " Research Portal\n" " \n\n\n\n\n\n\n" " Search\n" " \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n" "Vocational Education & Training\n\n\n" "Current Students\n\n\n" "Staff\n\n\n" "Library\n\n\n" "Contact us\n\n\n\n\n" "Learnline Login\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n" "NOT READY TO APPLY?\n" "KEEP ME UPDATED ON COURSES AND DATES\n\n\n\n\n\n\n" " Back: Community Services and Social Work\n\n\n" " Undergraduate\n" " \n" " Diploma of Counselling\n" " \n" " 2019\n" " \n\n" "Didn't study in Australia? Switch to international student information\n\n\n" "Studied in Australia? Switch to domestic student information\n\n\n\n\n\n" " Add to shortlist\n\n\n\n\n\n" " Add to shortlist\n\n\n\n\n\n" " Download course pack\n\n\n\n\n\n\n\n" "Overview\n\n\n\n\n\n" "overview\n\n\n\n\n" "Entry Requirements\n\n\n\n\n" "Course Structure\n\n\n\n\n" "Study Plan\n\n\n\n\n" "How to apply\n\n\n\n\n\n\n\n\n\n\n" " Location\n" " \n" "Satac Codes\n\n\n\n" "Casuarina Campus\n" "116131\n\n\n" "Online\n" "116131\n\n\n\n\n\n" " Location\n" " \n" "Cricos Codes\n\n\n\n" "Casuarina Campus\n" "089407G\n\n\n\n\n\n" " Course Duration\n" " \n\n\n\n" "Full-time\n\n\n\n\n" " 1 year/s\n" " \n\n\n\n\n\n\n" "Part-time\n\n\n\n\n" " 2 year/s\n" " \n\n\n\n\n\n\n\n\n\n" " Availability for Admission\n" " \n\n\n\n" "Domestic\n\n\n\n\n\n" " Semester 1\n" " \n\n" " Semester 2\n" " \n\n" " Summer Semester\n" " \n\n\n\n\n\n\n\n" "International\n\n\n\n\n\n" " Semester 1\n" " \n\n\n\n\n\n\n\n\n\n" "Applications accepted through MyNextCourse\n\n\n\n\n" " Yes\n" " \n\n\n\n\n\n\n" "Can offers be deferred?\n\n\n\n\n" " Yes\n" " \n\n\n\n\n\n\n\n\n\n" " CDU Reference\n" " \n\n\n\n" "CDU Course Code\n\n\n\n\n" "YCOUN1\n\n\n\n\n\n\n\n" "Award\n\n\n\n\n" " Diploma of Counselling\n" " \n\n\n\n\n\n\n" "Faculty/College\n\n\n\n\n" " College of Health and Human Sciences\n" " \n\n\n\n\n\n\n" "Sector\n\n\n\n\n" " HE\n" " \n\n\n\n\n\n\n" "Area of study\n\n\n\n\n\n" " Health and Medicine\n" " \n\n" " Society and Welfare Studies\n" " \n\n\n\n\n\n\n\n\n\n\n\n\n\n" " Are you looking for a career that will make a positive impact on the health and well-being of those in your community? Or simply looking to build on your knowledge in human services? A qualification in counselling is what you are looking for.\n\n" "lslgllslldglasgasg\n\n" " During your course, you will explore key areas such as psychology, trauma assessment and intervention, alcohol and other drugs as well as build on your communication skills.\n" "asgasg\n" " This qualification will. complement your existing professional career, or it may prepare you for career opportunities in counselling-related fields in government, private companies, non-government organisations (NGO) and community groups.\n" " This qualification will. complement your existing professional career, or it may prepare you for career opportunities in counselling-related fields in government, private companies, non-government organisations (NGO) and community groups.\n\n\n\n" "Career opportunities.\n\n" "overview\n\n" " This qualification will. complement. your existing professional career, or it may prepare you for career opportunities in counselling-related fields in government, private companies, non-government organisations (NGO) and community groups.\n\n" " This qualification will. complement your existing professional career, or it may prepare you for career opportunities in counselling-related fields in government, private companies, non-government organisations (NGO) and community groups.\n" "whahtthefuck\n" "This qualification will. complement your existing professional career, or it may prepare you for career opportunities in counselling-related fields in government, private companies, non-government organisations (NGO) and community groups.\n" "sshsfhfg.\n" "This qualification will. complement your existing professional career, or it may prepare you for career opportunities in counselling-related fields in government, private companies, non-government organisations (NGO) and community groups.\n\n\n" "Credit transfers & pathways\n\n" "Credit transfer\n\n\n\n\n" "For further information on credit transfer and how to apply visit ASK CDU\n\n\n\n\n\n" "Course fees\n\n" "Commonwealth supported places\n\n\n\n" "Commonwealth Supported places are available in this course to students who meet one of the following residency requirements:\n" "(a) Australian Citizenship; or\n" "(b) a New Zealand citizen or a permanent resident visa holder who will be resident within Australia for the duration of the unit.\n" "Information about fees and charges can be found at Fees and Payments and 2019 HE Units and Fees.\n\n\n\n\n\n" "International full fees\n\n\n\n" " Fees for new commencing students in 2019 is $26,880.00. The fees are subject to increase annually. \n" "Fees is reviewed and adjusted annually to take into account the increases in University's course delivery costs. The University reserves the right to review and adjust the tuition fees\n\n\n\n\n\n" "International applications\n\n\n\n" "All International applicants must apply through StudyLink\n" "unless currently studying year 12 in Australia. Only\n" "International applicants currently studying year 12 in Australia\n" "should apply via SATAC.\n\n\n\n\n\n\n\n\n\n" " Student profile\n" " \n\n\n\n\n\n\n" "The table below gives an indication of the likely peer cohort for new students in this course. It provides data on students that commenced this course and passed the census date in Semester 1, 2018.\n\n" "Applicant background (Semester one intake 2018)\n" "No. of Students\n" "% of all Students\n\n" "A. Higher education study(includes a bridging or enabling course)\n" " 6\n" " 50.0\n" "B. Vocational education and training (VET) study\n" " 5\n" " 41.7\n\n" "C. Work and life experience(Admitted on the basis of previous achievement not in the other three categories)\n" "<5\n" "N/P\n\n" "D. Recent secondary education\n" "Admitted solely on the basis of ATAR\n" "(regardless of whether this includes the consideration of adjustment factors such as equity or subject bonus points)\n" "<5\n" "N/P\n\n" "Admitted where both ATAR and additional criteria were considered\n" "(e.g. portfolio, audition, extra offer conditional on minimum ATAR)\n" "N/A\n" " .0\n\n" "Admitted on the basis of other criteria only and ATAR was not a factor\n" "(e.g. special consideration, audition alone, schools recommendation scheme with no minimum ATAR requirement)\n" "N/A\n" " .0\n" "International students\n" "<5\n" "N/P\n" "All students\n" " 12\n" " 100.0\n\n\n" "Notes\"<5\" - the number of students is less than 5N/A - Students not accepted in this categoryN/P - Not published: the number is hidden to prevent calculation of numbers in cells with less than 5 students.\n\n\n\n\n\n\n\n\n\n\n" " Accreditation\n" " \n\n\n\n\n\n\n" "This course is accredited by the University in accordance with the Higher Education Standards.\n\n\n\n\n\n\n\n\n\n\n" " Additional information\n" " \n\n\n\n\n" "Australian qualification framework\n\n\n\n" "This course is recognised in the Australian Qualifications Framework at Level 5.\n\n\n\n\n\n\n\n\n\n\n\n" "Contact details\n\n\n\n" "For further information about the course, enrolment procedures, closing dates and other administrative issues please contact Student Central on:Email:\n" "student.central@cdu.edu.au\n" "Phone:\n" "(08) 8946 7766 or 1800 061 963 (free call)\n\n\n\n\n\n\n\n\n\n\n\n\n\n" "Next\n" "Entry Requirements\n\n\n\n\n\n\n\n\n" "Admission criteria\n\n\n\n" "Admission requirements are met by one of the following:\n" "Successful completion of the Northern Territory Certificate of Education and Training (or equivalent) and the awarding of an Australian Tertiary Admissions Rank (ATAR) of at least 60*.\n" "Successful completion of a national qualification at Certificate IV level or higher.\n" "Successful completion of at least 0.5 year of full-time study (or equivalent) of a higher education degree/diploma.\n" "Overseas secondary or tertiary qualifications considered equivalent to the above Australian qualifications.\n" "Attainment of a STAT Multiple Choice score of 135 (or a score of 145 if prior to May 2010).\n" "Successful completion of the Tertiary Enabling Program, the ACIKE Preparation for Tertiary Success courses, or other recognised tertiary preparation course.\n" "Submission of an acceptable personal competencies statement and/or employment experience.\n" "* After any applicable adjustment factors have been applied.\n\n\n\n\n\n" "Essential requirements\n\n" "English language requirements\n\n\n\n\n" "All HE applicants are required to demonstrate the minimum English language proficiency requirements for their chosen course of study. These entry requirements will normally be met by undertaking previous education in an English speaking country or obtaining a minimum International English Language Testing System (IELTS) score.\n" " Where applicable, international applicants must also satisfy the Department of Immigration and Border Protection (DIBP) English language proficiency (ELP) requirements for student visa applications.  \n\n\n\n\n\n\n" "ATAR profile\n\n\n\n" "The following table represents the ATAR and selection rank profile for applicants offered a place on the basis of their ATAR in semester 1, 2018\n\n" "ATAR based offers only\n" "ATAR(excluding adjustment factors)\n" "Selection Rank(ATAR plus any adjustment factors)\n" "Lowest rank to receive an offer\n" "<5\n" "<5\n" "Median rank to receive an offer\n" "<5\n" "<5\n" "Highest rank to receive an offer\n" "<5\n" "<5\n\n\n" "Notes \"<5\" indicates less than 5 ATAR-based offers were made.\n\n\n\n\n\n\n\n\n\n\n\n\n" "Previous\n" "Overview\n\n\n\n\n" "Next\n" "Course Structure\n\n\n\n\n\n\n\n" "Course structure\n\n\n\n" "A candidate must successfully complete units totalling 80 credit points (cp) as detailed below. All units are valued at 10 credit points unless indicated.\n\n" "Unit type\n\n" "Credit Points\n\n" "Specific requirements\n\n" "Common Units\n" " (2 units)\n\n" "20cp\n\n\n" "Common units totalling 20 credit points as detailed below. \n" "CUC107 Cultural Intelligence and Capability (compulsory)\n" " Plus either:CUC106 Design and Innovation: Communicating Technology ORCUC100 Academic Literacies Through Exploring Sustainability (new title 2016)\n" " Select Common Units to find out more about individual units and advanced standing options.\n\n" "Core Units\n" " (4 units)\n\n" "40cp\n\n\n" "Compulsory Core units totalling 40 credit points as detailed below. \n" "PSY140 Introduction to Psychology APSY141 Introduction to Psychology BSWK102 Communication SkillsPSY390 Counselling\n" "  \n\n" "Specialist Electives\n" " (2 units)\n\n" "20cp\n\n\n" "Units totalling 20 credit points selected from the list of available units detailed below.\n" "PSY143 Traumatology - Assessment and InterventionPSY202 Developmental PsychologyAOD301 Counselling/Interventions in Alcohol and Other DrugsPSY340 Behavioural Therapies\n" "  \n\n" " \n\n" "80cp\n\n" "Total Credit Points\n\n" "Students who commenced in or after 2013\n" "The grade of \"PC\" cannot be counted towards a Diploma AQF Level 5 course award. \n" "Students should refer to the current Grading Policy and Common Course Rules for further information.\n" " \n\n\n\n\n\n\n\n\n" "Previous\n" "Entry Requirements\n\n\n\n\n" "Next\n" "Study Plan\n\n\n\n\n\n\n\n" "Study plan\n\n\n\n" "Students commencing in Semester 1\n" "The Recommended Study Plan provided below is suitable for a student commencing in semester 1 and enrolling in a standard load. Students entering this course with advanced standing, or wishing to reduce or vary their study plan due to work, personal, financial or other reasons should use the table as a guide to create an individual study plan.\n" " \n\n" "Legend:\n" "CU = Common Unit\n" "CO = Core Unit\n" "SE = Specialist Elective\n\n" " \n\n" "Semester 1\n" "Semester 2\n" "Year 1\n\n" "CUC107 Cultural Intelligence and Capability\n" "CU\n\n" "PSY141 Introduction to Psychology B\n" "CO\n\n" "CUC106 Design and Innovation: Communicating Technology ORCUC100 Academic Literacies Through Exploring Sustainability\n" "CU\n\n" "SWK102 Communication Skills\n" "CO\n\n" "PSY140 Introduction to Psychology A\n" "CO\n" "Specialist elective\n" "SE\n\n" "PSY390 Counselling\n" "CO\n" "Specialist elective\n" "SE\n\n" " \n" "Students commencing in Semester 2\n" "The Recommended Study Plan provided below is suitable for a student commencing in semester 2 and enrolling in a standard load Students entering this course with advanced standing, or wishing to reduce or vary their study plan due to work, personal, financial or other reasons should use the table as a guide to create an individual study plan.\n" " \n\n" "Legend:\n" "CU = Common Unit\n" "CO = Core Unit\n" "SE = Specialist Elective\n\n" " \n\n" "Semester 1\n" "Semester 2\n" "Year 1\n" " \n" " \n\n" "PSY141 Introduction to Psychology B\n" "CO\n" " \n" " \n\n" "SWK102 Communication Skills\n" "CO\n" " \n" " \n" "Specialist elective\n" "SE\n" " \n" " \n" "Specialist elective\n" "SE\n" "Year 2\n\n" "CUC106 Design and Innovation: Communicating Technology ORCUC100 Academic Literacies Through Exploring Sustainability\n" "CU\n" " \n" " \n\n" "CUC107 Cultural Intelligence and Capability\n" "CU\n" " \n" " \n\n" "PSY140 Introduction to Psychology A\n" "CO\n" " \n" " \n\n" "PSY390 Counselling\n" "CO\n" " \n" " \n\n" " \n" "Students commencing in Summer Semester\n" "The Recommended Study Plan provided below is suitable for a student commencing in summer semester and enrolling in a standard load Students entering this course with advanced standing, or wishing to reduce or vary their study plan due to work, personal, financial or other reasons should use the table as a guide to create an individual study plan.\n\n" "Legend:\n" "CU = Common Unit\n" "CO = Core Unit\n" "SE = Specialist Elective\n\n" " \n\n" "Semester 1\n" "Semester 2\n" "Summer Semester\n" "Year 1\n" " \n" " \n" " \n" " \n\n" "PSY140 Introduction to Psychology A\n" "CO\n" " \n" " \n" " \n" " \n\n" "PSY141 Introduction to Psychology B\n" "CO\n\n" " \n\n" "Semester 1\n" "Semester 2\n" "Year 2\n\n" "CUC106 Design and Innovation: Communicating Technology ORCUC100 Academic Literacies Through Exploring Sustainability\n" "CU\n\n" "SWK102 Communication Skills\n" "CO\n\n" "CUC107 Cultural Intelligence and Capability\n" "CU\n" "Specialist elective\n" "SE\n\n" "PSY390 Counselling\n" "CO\n" "Specialist elective\n" "SE\n\n" " \n\n\n\n\n\n\n\n\n" "Previous\n" "Course Structure\n\n\n\n\n" "Next\n" "How to apply\n\n\n\n\n\n\n\n" " \n\n" " SATAC and MyNextCourse applications\n" " \n\n\n\n\n\n" " \n\n" " Option 1 - Apply via SATAC\n" " \n\n\n\n\n\n" "You should apply through SATAC if using one of the following:\n" "ATAR (or equivalent) School Leaver\n" "incomplete higher education studies\n" "STAT or work/life experience\n" "Certificate IV or above at another institution\n" "eligible non-CDU Enabling Program\n" "SATAC\n\n\n\n\n\n\n\n\n\n" " \n\n" " Option 2 - Apply via MyNextCourse\n" " \n\n\n\n\n\n" "You should apply via MyNextCourse if you have successfully completed, or are about to complete one of the following at CDU:\n" "Certificate IV or above\n" "Eligible Enabling Program (TEP, PTS)\n" "Undergraduate Degree\n" "MyNextCourse\n\n\n\n\n\n\n\n\n\n\n\n" "Are you applying as an International Student?\n\n\n" "Switch to International student information\n\n\n\n\n\n\n\n" " \n\n" " Everything you need to know to apply\n" " \n\n\n\n\n\n" " \n\n" " How to apply for international students\n" " \n\n\n\n\n\n" "Applications to CDU must be submitted online.\n" " \n" "You will need a valid email address to create your online account.\n" " \n" "Once you have started the application you will have the option of saving your application and resuming it at a later date.\n" " \n" "There is no application fee when you apply online.\n\n\n\n\n\n\n" "Find out more\n\n\n\n\n\n\n\n" " \n\n" " Find a CDU agent partner\n" " \n\n\n\n\n\n" "Applicants may seek further information about international education in Australia from the Australian Government Department of Education and Training or from our overseas / external representatives.\n" " \n" "To help with the process, we've compile a list of authorised representatives.\n\n\n\n\n\n\n" "Find out more\n\n\n\n\n\n\n\n" " \n\n" " Not sure if you are a domestic or international student?\n" " \n\n\n\n\n\n" "That's OK - it can be a little tricky to know the difference.\n" " \n" "To help you out, we've put together a guide to answer any questions you might have.\n" " \n" "Things like the difference between domestic and international students or the difference between course types like VET and undergraduate.\n\n\n\n\n\n\n" "Find out more\n\n\n\n\n\n\n\n\n\n" "Are you applying as a Domestic Student?\n\n\n" "Switch to Domestic student information\n\n\n\n\n\n\n\n\n\n" "We're here to help you\n\n\n\n\n\n\n\n" " First name\n" " (required)\n\n\n\n\n\n" " Last name\n" " (required)\n\n\n\n\n\n\n" " Email\n" " (required)\n\n\n\n\n\n" " Mobile\n" " \n\n\n\n\n\n" " I'm interested in studying:\n" " (required)\n\n" "I'm interested in studying: *AccountingBridging / Enabling ProgramBusinessCommunity and Social WorkCreative Arts and DesignEducation and TeachingEngineeringExercise and SportHair and Beauty ServicesHealthHumanitarian. Emergency and Disaster ManagementHumanities and Social SciencesIndigenous KnowledgesInformation Technology, Computer ScienceLanguagesLaw and Legal StudiesNursing and MidwiferyPharmacyPrimary IndustriesPsychologyScience, Environmental SciencesTourism, Hospitality, FoodTrades\n\n\n\n" " I'd describe myself as:\n" " (required)\n\n" "I'd describe myself as: *An adult returning to uni to study another undergraduate degreeAn adult who has never been to uni, ready to start my first degreeAn adult looking to advance my career and education with a postgraduate degreeA school leaver heading straight to universityAn adult looking to study a higher degree by researchA school leaver going to uni after a gap year (or two)Someone who would like to do a bridging course before starting uniSomeone looking to gain practical knowledge through vocational education\n\n\n\n\n" " Country\n" " (required)\n\n" "Country *AustraliaInternational\n\n\n\n\n" " How can we help you?\n" " (required)\n\n\n\n\n\n\n" "By submitting this form you agree to receive future student communications such as key date reminders, study tips, real student stories and more. Of course, you can unsubscribe at any time. See our privacy policy for more information.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n" "Previous\n" "Study Plan\n\n\n\n\n\n\n\n\n\n\n\n\n\n" " Shortlist 0\n\n\n\n\n" "Your Shortlist\n\n\n\n\n\n" " Your Shortlist is empty\n" " \n" "Find courses and add them to your shortlist by clicking on the\n" " \n\n\n\n\n\n" " Your Shortlist was sent to your inbox\n" " \n" "It may take up to 5 minutes.\n" "Return to Shortlist\n\n\n\n\n" "Course\n" "Course Code\n\n\n\n\n\n\n\n" "Send Shortlist to...\n\n\n\n\n\n\n\n\n\n\n\n" "About CDU\n\n\n" "Business & government\n\n\n" "Campuses & centres\n\n\n" "Media\n\n\n" "Events\n\n\n" "Jobs at CDU \n\n\n" "Indigenous Leadership & Engagement\n\n\n\n\n\n\n" "Learning & teaching\n\n\n" "Colleges & Faculties\n\n\n" "Course Catalogue\n\n\n" "Library\n\n\n" "CDU Bookshop\n\n\n\n\n\n\n" "Information for\n\n\n" "Adult learners\n\n\n" "High School students\n\n\n" "Career advisers, teachers & parents\n\n\n" "Indigenous students\n\n\n" "Australian Defence Force\n\n\n" "Regional & remote support\n\n\n" "Vocational Education & Training\n\n\n\n\n\n\n" "Connect\n\n\n" "Ask CDU\n\n\n" "study@cdu.edu.au\n\n\n" "Freecall - 1800 061 963\n\n\n" "Campus security - 1800 646 501\n\n\n" "CDU Phone Directory\n\n\n\n\n\n\n\n\n" "Facebook\n\n\n" "Instagram\n\n\n" "Linked In\n\n\n" "Twitter\n\n\n" "YouTube\n\n\n\n\n\n" "Charles Darwin University acknowledges the traditional custodians across the lands on which we live and work, and we pay our respects to Elders both past and present.\n" "CRICOS Provider No: 00300K (NT/VIC) 03286A (NSW) RTO Provider No: 0373\n" "ABN 54 093 513 649 | Privacy Statement | Copyright and Disclaimer | Feedback\n" "overviewd ['overview\\n\\n\\n\\n\\n\\n', 'overview\\n\\n\\n\\n\\nentry requirements\\n\\n\\n\\n\\ncourse structure\\n\\n\\n\\n\\nstudy plan\\n\\n\\n\\n\\nhow to apply\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n location\\n \\nsatac codes\\n\\n\\n\\ncasuarina campus\\n116131\\n\\n\\nonline\\n116131\\n\\n\\n\\n\\n\\n location\\n \\ncricos codes\\n\\n\\n\\ncasuarina campus\\n089407g\\n\\n\\n\\n\\n\\n course duration\\n \\n\\n\\n\\nfull-time\\n\\n\\n\\n\\n 1 year/s\\n \\n\\n\\n\\n\\n\\n\\npart-time\\n\\n\\n\\n\\n 2 year/s\\n \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n availability for admission\\n \\n\\n\\n\\ndomestic\\n\\n\\n\\n\\n\\n semester 1\\n \\n\\n semester 2\\n \\n\\n summer semester\\n \\n\\n\\n\\n\\n\\n\\n\\ninternational\\n\\n\\n\\n\\n\\n semester 1\\n \\n\\n\\n\\n\\n\\n\\n\\n\\n\\napplications accepted through mynextcourse\\n\\n\\n\\n\\n yes\\n \\n\\n\\n\\n\\n\\n\\ncan offers be deferred?\\n\\n\\n\\n\\n yes\\n \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n cdu reference\\n \\n\\n\\n\\ncdu course code\\n\\n\\n\\n\\nycoun1\\n\\n\\n\\n\\n\\n\\n\\naward\\n\\n\\n\\n\\n diploma of counselling\\n \\n\\n\\n\\n\\n\\n\\nfaculty/college\\n\\n\\n\\n\\n college of health and human sciences\\n \\n\\n\\n\\n\\n\\n\\nsector\\n\\n\\n\\n\\n he\\n \\n\\n\\n\\n\\n\\n\\narea of study\\n\\n\\n\\n\\n\\n health and medicine\\n \\n\\n society and welfare studies\\n \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\tare you looking for a career that will make a positive impact on the health and well-being of those in your community? or simply looking to build on your knowledge in human services? a qualification in counselling is what you are looking for', 'overview\\n\\n\\n\\n\\nnext\\ncourse structure\\n\\n\\n\\n\\n\\n\\n\\ncourse structure\\n\\n\\n\\na candidate must successfully complete units totalling 80 credit points (cp) as detailed below']\n" "2\n" "Diploma of Counselling (YCOUN1 - 2019) | Charles Darwin University\n\n\n\n\n\n\n\n\n\n\n\n" " Skip to main content\n" " \n\n\n\n\n\n\n\n\n" " \n\n\n\n" "Phone: 1800 061 963\n" "Email: study@cdu.edu.au\n\n\n\n\n" " Request a call\n\n\n" " How to apply\n\n\n\n\n\n\n\n\n\n" " Australia\n\n" " \n" " Menu\n" " \n\n\n" " \n\n\n\n\n" "Study with CDU\n\n\n\n" "Find a course\n\n\n" "Accounting\n\n" "Browse by study area\n\n" "Business\n\n\n" "Community Services & Social Work\n\n\n" "Creative Arts & Design\n\n\n" "Culinary Arts\n\n\n" "Education\n\n\n" "Enabling Courses\n\n\n" "Engineering\n\n\n" "Exercise & Sport Science\n\n\n" "Hair & Beauty Services\n\n\n" "Health\n\n\n" "Humanities & Social Sciences\n\n\n" "Humanitarian, Emergency & Disaster Management\n\n\n" "Indigenous Knowledges\n\n\n" "IT & Network Engineering\n\n\n" "Languages\n\n\n" "Law & Legal Studies\n\n\n" "Nursing\n\n\n" "Primary Industries\n\n\n" "Psychology\n\n\n" "Public Health\n\n\n" "Science, Environmental Science & Management\n\n\n" "Tourism, Hospitality & Food\n\n\n" "Trades\n\n\n\n\n" "The essentials\n\n" "Everything you'll need to get started\n\n" "Why choose CDU\n\n\n" "Study pathways\n\n\n" "How to apply\n\n\n" "Aboriginal & Torres Strait Islander people \n\n\n" "Admission requirements\n\n\n" "How to enrol\n\n\n" "Course fees\n\n\n" "Scholarships\n\n\n" "English proficiency\n\n\n" "Student profile\n\n\n" "Important dates\n\n\n\n\n" "Student life\n\n" "On and off campus, what to expect\n\n" "Flexible study options\n\n\n" "Accommodation\n\n\n" "Student support \n\n\n" "Student and campus services\n\n\n" "Get started\n\n\n" "Settle in\n\n\n\n\n" "Why choose CDU\n\n" "Here are the reasons\n\n" "Study with a new world University \n\n\n" "Our achievements\n\n\n" "Learn more about CDU\n\n\n\n\n\n\n\n" "International\n\n\n" "Research\n\n\n" "Engage\n\n\n\n" "Engage with CDU \n\n\n" "CDU Alumni\n\n\n" "CDU Art Collection & Gallery\n\n\n" "CDU Foundation \n\n\n" "Indigenous Leadership & Engagement\n\n" "Engage with the CDU community \n\n" "Sponsorship\n\n\n\n\n" "Giving to CDU\n\n" "Engagement opportunities\n\n" "Other ways to support CDU\n\n\n" "Support CDU\n\n\n" "Support our students\n\n\n" "Supporting communities\n\n\n" "Supporting research\n\n\n\n\n" "Partnerships\n\n" "Ways to partner with CDU\n\n" "Why partner with CDU\n\n\n" "Consultancy\n\n\n" "NTG Partnership\n\n\n" "Partnerships and opportunities\n\n\n\n\n\n\n\n" "About CDU \n\n\n\n" "About CDU\n\n" "Learn more about our University\n\n" "Newsroom\n\n\n" "Events\n\n\n" "University profile\n\n\n" "Corporate information\n\n\n" "Learning & Teaching \n\n\n" "Structure & leadership\n\n\n" "University operations\n\n\n" "Partnerships & industry collaboration\n\n\n" "Campuses & centres\n\n\n\n\n" "Colleges and Faculties\n\n" "Colleges and Faculties\n\n" "College of Business and Law\n\n\n" "College of Education\n\n\n" "College of Engineering, IT & Environment\n\n\n" "College of Health & Human Sciences\n\n\n" "College of Indigenous Futures, Arts & Society\n\n\n" "College of Nursing & Midwifery\n\n\n" "Faculty of Vocational Education & Training (VET)\n\n\n\n\n\n\n\n" "Search\n\n\n" "Search Charles Darwin University for\n\n\n\n\n" " Search for\n" " \n\n\n\n\n\n" " General\n" " \n\n\n\n\n" " Staff\n" " \n\n\n\n\n" " Courses\n" " \n\n\n\n\n" " Research Portal\n" " \n\n\n\n\n\n\n" " Search\n" " \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n" "Vocational Education & Training\n\n\n" "Current Students\n\n\n" "Staff\n\n\n" "Library\n\n\n" "Contact us\n\n\n\n\n" "Learnline Login\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n" "NOT READY TO APPLY?\n" "KEEP ME UPDATED ON COURSES AND DATES\n\n\n\n\n\n\n" " Back: Community Services and Social Work\n\n\n" " Undergraduate\n" " \n" " Diploma of Counselling\n" " \n" " 2019\n" " \n\n" "Didn't study in Australia? Switch to international student information\n\n\n" "Studied in Australia? Switch to domestic student information\n\n\n\n\n\n" " Add to shortlist\n\n\n\n\n\n" " Add to shortlist\n\n\n\n\n\n" " Download course pack\n\n\n\n\n\n\n\n" "Overview\n\n\n\n\n\n" "Overview\n\n\n\n\n" "Entry Requirements\n\n\n\n\n" "Course Structure\n\n\n\n\n" "Study Plan\n\n\n\n\n" "How to apply\n\n\n\n\n\n\n\n\n\n\n" " Location\n" " \n" "Satac Codes\n\n\n\n" "Casuarina Campus\n" "116131\n\n\n" "Online\n" "116131\n\n\n\n\n\n" " Location\n" " \n" "Cricos Codes\n\n\n\n" "Casuarina Campus\n" "089407G\n\n\n\n\n\n" " Course Duration\n" " \n\n\n\n" "Full-time\n\n\n\n\n" " 1 year/s\n" " \n\n\n\n\n\n\n" "Part-time\n\n\n\n\n" " 2 year/s\n" " \n\n\n\n\n\n\n\n\n\n" " Availability for Admission\n" " \n\n\n\n" "Domestic\n\n\n\n\n\n" " Semester 1\n" " \n\n" " Semester 2\n" " \n\n" " Summer Semester\n" " \n\n\n\n\n\n\n\n" "International\n\n\n\n\n\n" " Semester 1\n" " \n\n\n\n\n\n\n\n\n\n" "Applications accepted through MyNextCourse\n\n\n\n\n" " Yes\n" " \n\n\n\n\n\n\n" "Can offers be deferred?\n\n\n\n\n" " Yes\n" " \n\n\n\n\n\n\n\n\n\n" " CDU Reference\n" " \n\n\n\n" "CDU Course Code\n\n\n\n\n" "YCOUN1\n\n\n\n\n\n\n\n" "Award\n\n\n\n\n" " Diploma of Counselling\n" " \n\n\n\n\n\n\n" "Faculty/College\n\n\n\n\n" " College of Health and Human Sciences\n" " \n\n\n\n\n\n\n" "Sector\n\n\n\n\n" " HE\n" " \n\n\n\n\n\n\n" "Area of study\n\n\n\n\n\n" " Health and Medicine\n" " \n\n" " Society and Welfare Studies\n" " \n\n\n\n\n\n\n\n\n\n\n\n\n\n" " Are you looking for a career that will make a positive impact on the health and well-being of those in your community? Or simply looking to build on your knowledge in human services? A qualification in counselling is what you are looking for.\n\n" " During your course, you will explore key areas such as psychology, trauma assessment and intervention, alcohol and other drugs as well as build on your communication skills.\n\n\n\n\n\n" "Career opportunities\n" "overview\n\n\n" " This qualification will complement your existing professional career, or it may prepare you for career opportunities in counselling-related fields in government, private companies, non-government organisations (NGO) and community groups.\n\n\n\n\n\n" "Credit transfers & pathways\n\n" "Credit transfer\n\n\n\n\n" "For further information on credit transfer and how to apply visit ASK CDU\n\n\n\n\n\n" "Course fees\n\n" "Commonwealth supported places\n\n\n\n" "Commonwealth Supported places are available in this course to students who meet one of the following residency requirements:\n" "(a) Australian Citizenship; or\n" "(b) a New Zealand citizen or a permanent resident visa holder who will be resident within Australia for the duration of the unit.\n" "Information about fees and charges can be found at Fees and Payments and 2019 HE Units and Fees.\n\n\n\n\n\n" "International full fees\n\n\n\n" " Fees for new commencing students in 2019 is $26,880.00. The fees are subject to increase annually. \n" "Fees is reviewed and adjusted annually to take into account the increases in University's course delivery costs. The University reserves the right to review and adjust the tuition fees\n\n\n\n\n\n" "International applications\n\n\n\n" "All International applicants must apply through StudyLink\n" "unless currently studying year 12 in Australia. Only\n" "International applicants currently studying year 12 in Australia\n" "should apply via SATAC.\n\n\n\n\n\n\n\n\n\n" " Student profile\n" " \n\n\n\n\n\n\n" "The table below gives an indication of the likely peer cohort for new students in this course. It provides data on students that commenced this course and passed the census date in Semester 1, 2018.\n\n" "Applicant background (Semester one intake 2018)\n" "No. of Students\n" "% of all Students\n\n" "A. Higher education study(includes a bridging or enabling course)\n" " 6\n" " 50.0\n" "B. Vocational education and training (VET) study\n" " 5\n" " 41.7\n\n" "C. Work and life experience(Admitted on the basis of previous achievement not in the other three categories)\n" "<5\n" "N/P\n\n" "D. Recent secondary education\n" "Admitted solely on the basis of ATAR\n" "(regardless of whether this includes the consideration of adjustment factors such as equity or subject bonus points)\n" "<5\n" "N/P\n\n" "Admitted where both ATAR and additional criteria were considered\n" "(e.g. portfolio, audition, extra offer conditional on minimum ATAR)\n" "N/A\n" " .0\n\n" "Admitted on the basis of other criteria only and ATAR was not a factor\n" "(e.g. special consideration, audition alone, schools recommendation scheme with no minimum ATAR requirement)\n" "N/A\n" " .0\n" "International students\n" "<5\n" "N/P\n" "All students\n" " 12\n" " 100.0\n\n\n" "Notes\"<5\" - the number of students is less than 5N/A - Students not accepted in this categoryN/P - Not published: the number is hidden to prevent calculation of numbers in cells with less than 5 students.\n\n\n\n\n\n\n\n\n\n\n" " Accreditation\n" " \n\n\n\n\n\n\n" "This course is accredited by the University in accordance with the Higher Education Standards.\n\n\n\n\n\n\n\n\n\n\n" " Additional information\n" " \n\n\n\n\n" "Australian qualification framework\n\n\n\n" "This course is recognised in the Australian Qualifications Framework at Level 5.\n\n\n\n\n\n\n\n\n\n\n\n" "Contact details\n\n\n\n" "For further information about the course, enrolment procedures, closing dates and other administrative issues please contact Student Central on:Email:\n" "student.central@cdu.edu.au\n" "Phone:\n" "(08) 8946 7766 or 1800 061 963 (free call)\n\n\n\n\n\n\n\n\n\n\n\n\n\n" "Next\n" "Entry Requirements\n\n\n\n\n\n\n\n\n" "Admission criteria\n\n\n\n" "Admission requirements are met by one of the following:\n" "Successful completion of the Northern Territory Certificate of Education and Training (or equivalent) and the awarding of an Australian Tertiary Admissions Rank (ATAR) of at least 60*.\n" "Successful completion of a national qualification at Certificate IV level or higher.\n" "Successful completion of at least 0.5 year of full-time study (or equivalent) of a higher education degree/diploma.\n" "Overseas secondary or tertiary qualifications considered equivalent to the above Australian qualifications.\n" "Attainment of a STAT Multiple Choice score of 135 (or a score of 145 if prior to May 2010).\n" "Successful completion of the Tertiary Enabling Program, the ACIKE Preparation for Tertiary Success courses, or other recognised tertiary preparation course.\n" "Submission of an acceptable personal competencies statement and/or employment experience.\n" "* After any applicable adjustment factors have been applied.\n\n\n\n\n\n" "Essential requirements\n\n" "English language requirements\n\n\n\n\n" "All HE applicants are required to demonstrate the minimum English language proficiency requirements for their chosen course of study. These entry requirements will normally be met by undertaking previous education in an English speaking country or obtaining a minimum International English Language Testing System (IELTS) score.\n" " Where applicable, international applicants must also satisfy the Department of Immigration and Border Protection (DIBP) English language proficiency (ELP) requirements for student visa applications.  \n\n\n\n\n\n\n" "ATAR profile\n\n\n\n" "The following table represents the ATAR and selection rank profile for applicants offered a place on the basis of their ATAR in semester 1, 2018\n\n" "ATAR based offers only\n" "ATAR(excluding adjustment factors)\n" "Selection Rank(ATAR plus any adjustment factors)\n" "Lowest rank to receive an offer\n" "<5\n" "<5\n" "Median rank to receive an offer\n" "<5\n" "<5\n" "Highest rank to receive an offer\n" "<5\n" "<5\n\n\n" "Notes \"<5\" indicates less than 5 ATAR-based offers were made.\n\n\n\n\n\n\n\n\n\n\n\n\n" "Previous\n" "Overview\n\n\n\n\n" "Next\n" "Course Structure\n\n\n\n\n\n\n\n" "Course structure\n\n\n\n" "A candidate must successfully complete units totalling 80 credit points (cp) as detailed below. All units are valued at 10 credit points unless indicated.\n\n" "Unit type\n\n" "Credit Points\n\n" "Specific requirements\n\n" "Common Units\n" " (2 units)\n\n" "20cp\n\n\n" "Common units totalling 20 credit points as detailed below. \n" "CUC107 Cultural Intelligence and Capability (compulsory)\n" " Plus either:CUC106 Design and Innovation: Communicating Technology ORCUC100 Academic Literacies Through Exploring Sustainability (new title 2016)\n" " Select Common Units to find out more about individual units and advanced standing options.\n\n" "Core Units\n" " (4 units)\n\n" "40cp\n\n\n" "Compulsory Core units totalling 40 credit points as detailed below. \n" "PSY140 Introduction to Psychology APSY141 Introduction to Psychology BSWK102 Communication SkillsPSY390 Counselling\n" "  \n\n" "Specialist Electives\n" " (2 units)\n\n" "20cp\n\n\n" "Units totalling 20 credit points selected from the list of available units detailed below.\n" "PSY143 Traumatology - Assessment and InterventionPSY202 Developmental PsychologyAOD301 Counselling/Interventions in Alcohol and Other DrugsPSY340 Behavioural Therapies\n" "  \n\n" " \n\n" "80cp\n\n" "Total Credit Points\n\n" "Students who commenced in or after 2013\n" "The grade of \"PC\" cannot be counted towards a Diploma AQF Level 5 course award. \n" "Students should refer to the current Grading Policy and Common Course Rules for further information.\n" " \n\n\n\n\n\n\n\n\n" "Previous\n" "Entry Requirements\n\n\n\n\n" "Next\n" "Study Plan\n\n\n\n\n\n\n\n" "Study plan\n\n\n\n" "Students commencing in Semester 1\n" "The Recommended Study Plan provided below is suitable for a student commencing in semester 1 and enrolling in a standard load. Students entering this course with advanced standing, or wishing to reduce or vary their study plan due to work, personal, financial or other reasons should use the table as a guide to create an individual study plan.\n" " \n\n" "Legend:\n" "CU = Common Unit\n" "CO = Core Unit\n" "SE = Specialist Elective\n\n" " \n\n" "Semester 1\n" "Semester 2\n" "Year 1\n\n" "CUC107 Cultural Intelligence and Capability\n" "CU\n\n" "PSY141 Introduction to Psychology B\n" "CO\n\n" "CUC106 Design and Innovation: Communicating Technology ORCUC100 Academic Literacies Through Exploring Sustainability\n" "CU\n\n" "SWK102 Communication Skills\n" "CO\n\n" "PSY140 Introduction to Psychology A\n" "CO\n" "Specialist elective\n" "SE\n\n" "PSY390 Counselling\n" "CO\n" "Specialist elective\n" "SE\n\n" " \n" "Students commencing in Semester 2\n" "The Recommended Study Plan provided below is suitable for a student commencing in semester 2 and enrolling in a standard load Students entering this course with advanced standing, or wishing to reduce or vary their study plan due to work, personal, financial or other reasons should use the table as a guide to create an individual study plan.\n" " \n\n" "Legend:\n" "CU = Common Unit\n" "CO = Core Unit\n" "SE = Specialist Elective\n\n" " \n\n" "Semester 1\n" "Semester 2\n" "Year 1\n" " \n" " \n\n" "PSY141 Introduction to Psychology B\n" "CO\n" " \n" " \n\n" "SWK102 Communication Skills\n" "CO\n" " \n" " \n" "Specialist elective\n" "SE\n" " \n" " \n" "Specialist elective\n" "SE\n" "Year 2\n\n" "CUC106 Design and Innovation: Communicating Technology ORCUC100 Academic Literacies Through Exploring Sustainability\n" "CU\n" " \n" " \n\n" "CUC107 Cultural Intelligence and Capability\n" "CU\n" " \n" " \n\n" "PSY140 Introduction to Psychology A\n" "CO\n" " \n" " \n\n" "PSY390 Counselling\n" "CO\n" " \n" " \n\n" " \n" "Students commencing in Summer Semester\n" "The Recommended Study Plan provided below is suitable for a student commencing in summer semester and enrolling in a standard load Students entering this course with advanced standing, or wishing to reduce or vary their study plan due to work, personal, financial or other reasons should use the table as a guide to create an individual study plan.\n\n" "Legend:\n" "CU = Common Unit\n" "CO = Core Unit\n" "SE = Specialist Elective\n\n" " \n\n" "Semester 1\n" "Semester 2\n" "Summer Semester\n" "Year 1\n" " \n" " \n" " \n" " \n\n" "PSY140 Introduction to Psychology A\n" "CO\n" " \n" " \n" " \n" " \n\n" "PSY141 Introduction to Psychology B\n" "CO\n\n" " \n\n" "Semester 1\n" "Semester 2\n" "Year 2\n\n" "CUC106 Design and Innovation: Communicating Technology ORCUC100 Academic Literacies Through Exploring Sustainability\n" "CU\n\n" "SWK102 Communication Skills\n" "CO\n\n" "CUC107 Cultural Intelligence and Capability\n" "CU\n" "Specialist elective\n" "SE\n\n" "PSY390 Counselling\n" "CO\n" "Specialist elective\n" "SE\n\n" " \n\n\n\n\n\n\n\n\n" "Previous\n" "Course Structure\n\n\n\n\n" "Next\n" "How to apply\n\n\n\n\n\n\n\n" " \n\n" " SATAC and MyNextCourse applications\n" " \n\n\n\n\n\n" " \n\n" " Option 1 - Apply via SATAC\n" " \n\n\n\n\n\n" "You should apply through SATAC if using one of the following:\n" "ATAR (or equivalent) School Leaver\n" "incomplete higher education studies\n" "STAT or work/life experience\n" "Certificate IV or above at another institution\n" "eligible non-CDU Enabling Program\n" "SATAC\n\n\n\n\n\n\n\n\n\n" " \n\n" " Option 2 - Apply via MyNextCourse\n" " \n\n\n\n\n\n" "You should apply via MyNextCourse if you have successfully completed, or are about to complete one of the following at CDU:\n" "Certificate IV or above\n" "Eligible Enabling Program (TEP, PTS)\n" "Undergraduate Degree\n" "MyNextCourse\n\n\n\n\n\n\n\n\n\n\n\n" "Are you applying as an International Student?\n\n\n" "Switch to International student information\n\n\n\n\n\n\n\n" " \n\n" " Everything you need to know to apply\n" " \n\n\n\n\n\n" " \n\n" " How to apply for international students\n" " \n\n\n\n\n\n" "Applications to CDU must be submitted online.\n" " \n" "You will need a valid email address to create your online account.\n" " \n" "Once you have started the application you will have the option of saving your application and resuming it at a later date.\n" " \n" "There is no application fee when you apply online.\n\n\n\n\n\n\n" "Find out more\n\n\n\n\n\n\n\n" " \n\n" " Find a CDU agent partner\n" " \n\n\n\n\n\n" "Applicants may seek further information about international education in Australia from the Australian Government Department of Education and Training or from our overseas / external representatives.\n" " \n" "To help with the process, we've compile a list of authorised representatives.\n\n\n\n\n\n\n" "Find out more\n\n\n\n\n\n\n\n" " \n\n" " Not sure if you are a domestic or international student?\n" " \n\n\n\n\n\n" "That's OK - it can be a little tricky to know the difference.\n" " \n" "To help you out, we've put together a guide to answer any questions you might have.\n" " \n" "Things like the difference between domestic and international students or the difference between course types like VET and undergraduate.\n\n\n\n\n\n\n" "Find out more\n\n\n\n\n\n\n\n\n\n" "Are you applying as a Domestic Student?\n\n\n" "Switch to Domestic student information\n\n\n\n\n\n\n\n\n\n" "We're here to help you\n\n\n\n\n\n\n\n" " First name\n" " (required)\n\n\n\n\n\n" " Last name\n" " (required)\n\n\n\n\n\n\n" " Email\n" " (required)\n\n\n\n\n\n" " Mobile\n" " \n\n\n\n\n\n" " I'm interested in studying:\n" " (required)\n\n" "I'm interested in studying: *AccountingBridging / Enabling ProgramBusinessCommunity and Social WorkCreative Arts and DesignEducation and TeachingEngineeringExercise and SportHair and Beauty ServicesHealthHumanitarian. Emergency and Disaster ManagementHumanities and Social SciencesIndigenous KnowledgesInformation Technology, Computer ScienceLanguagesLaw and Legal StudiesNursing and MidwiferyPharmacyPrimary IndustriesPsychologyScience, Environmental SciencesTourism, Hospitality, FoodTrades\n\n\n\n" " I'd describe myself as:\n" " (required)\n\n" "I'd describe myself as: *An adult returning to uni to study another undergraduate degreeAn adult who has never been to uni, ready to start my first degreeAn adult looking to advance my career and education with a postgraduate degreeA school leaver heading straight to universityAn adult looking to study a higher degree by researchA school leaver going to uni after a gap year (or two)Someone who would like to do a bridging course before starting uniSomeone looking to gain practical knowledge through vocational education\n\n\n\n\n" " Country\n" " (required)\n\n" "Country *AustraliaInternational\n\n\n\n\n" " How can we help you?\n" " (required)\n\n\n\n\n\n\n" "By submitting this form you agree to receive future student communications such as key date reminders, study tips, real student stories and more. Of course, you can unsubscribe at any time. See our privacy policy for more information.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n" "Previous\n" "Study Plan\n\n\n\n\n\n\n\n\n\n\n\n\n\n" " Shortlist 0\n\n\n\n\n" "Your Shortlist\n\n\n\n\n\n" " Your Shortlist is empty\n" " \n" "Find courses and add them to your shortlist by clicking on the\n" " \n\n\n\n\n\n" " Your Shortlist was sent to your inbox\n" " \n" "It may take up to 5 minutes.\n" "Return to Shortlist\n\n\n\n\n" "Course\n" "Course Code\n\n\n\n\n\n\n\n" "Send Shortlist to...\n\n\n\n\n\n\n\n\n\n\n\n" "About CDU\n\n\n" "Business & government\n\n\n" "Campuses & centres\n\n\n" "Media\n\n\n" "Events\n\n\n" "Jobs at CDU \n\n\n" "Indigenous Leadership & Engagement\n\n\n\n\n\n\n" "Learning & teaching\n\n\n" "Colleges & Faculties\n\n\n" "Course Catalogue\n\n\n" "Library\n\n\n" "CDU Bookshop\n\n\n\n\n\n\n" "Information for\n\n\n" "Adult learners\n\n\n" "High School students\n\n\n" "Career advisers, teachers & parents\n\n\n" "Indigenous students\n\n\n" "Australian Defence Force\n\n\n" "Regional & remote support\n\n\n" "Vocational Education & Training\n\n\n\n\n\n\n" "Connect\n\n\n" "Ask CDU\n\n\n" "study@cdu.edu.au\n\n\n" "Freecall - 1800 061 963\n\n\n" "Campus security - 1800 646 501\n\n\n" "CDU Phone Directory\n\n\n\n\n\n\n\n\n" "Facebook\n\n\n" "Instagram\n\n\n" "Linked In\n\n\n" "Twitter\n\n\n" "YouTube\n\n\n\n\n\n" "Charles Darwin University acknowledges the traditional custodians across the lands on which we live and work, and we pay our respects to Elders both past and present.\n" "CRICOS Provider No: 00300K (NT/VIC) 03286A (NSW) RTO Provider No: 0373\n" "ABN 54 093 513 649 | Privacy Statement | Copyright and Disclaimer | Feedback 正文\n" "[]\n" "雅思 匹配到的信息是 \n" "托福 匹配到的信息是 \n" "REPLACE INTO school_major_weight_ratio_dev ( id, title, h1, majorurl, schoolname, schoolid, overview, fees, alevel, ielts, ielts_infor, toefl, toefl_infor, semester, country_name, country_ename, country_id ) VALUES ( %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s ) ('31f54f00a1eb11e9bf4ffca', 'Diploma of Counselling (YCOUN1 - 2019) | Charles Darwin University', ' Diploma of Counselling\\n ', 'https://www.cdu.edu.au/study/diploma-counselling-ycoun1-2019', '悉尼大学', '5aca04759fc04e28a44dcbb4', '\\n\\n\\n\\n\\nentry requirements\\n\\n\\n\\n\\ncourse structure\\n\\n\\n\\n\\nstudy plan\\n\\n\\n\\n\\nhow to apply\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n location\\n \\nsatac codes\\n\\n\\n\\ncasuarina campus\\n116131\\n\\n\\nonline\\n116131\\n\\n\\n\\n\\n\\n location\\n \\ncricos codes\\n\\n\\n\\ncasuarina campus\\n089407g\\n\\n\\n\\n\\n\\n course duration\\n \\n\\n\\n\\nfull-time\\n\\n\\n\\n\\n 1 year/s\\n \\n\\n\\n\\n\\n\\n\\npart-time\\n\\n\\n\\n\\n 2 year/s\\n \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n availability for admission\\n \\n\\n\\n\\ndomestic\\n\\n\\n\\n\\n\\n semester 1\\n \\n\\n semester 2\\n \\n\\n summer semester\\n \\n\\n\\n\\n\\n\\n\\n\\ninternational\\n\\n\\n\\n\\n\\n semester 1\\n \\n\\n\\n\\n\\n\\n\\n\\n\\n\\napplications accepted through mynextcourse\\n\\n\\n\\n\\n yes\\n \\n\\n\\n\\n\\n\\n\\ncan offers be deferred?\\n\\n\\n\\n\\n yes\\n \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n cdu reference\\n \\n\\n\\n\\ncdu course code\\n\\n\\n\\n\\nycoun1\\n\\n\\n\\n\\n\\n\\n\\naward\\n\\n\\n\\n\\n diploma of counselling\\n \\n\\n\\n\\n\\n\\n\\nfaculty/college\\n\\n\\n\\n\\n college of health and human sciences\\n \\n\\n\\n\\n\\n\\n\\nsector\\n\\n\\n\\n\\n he\\n \\n\\n\\n\\n\\n\\n\\narea of study\\n\\n\\n\\n\\n\\n health and medicine\\n \\n\\n society and welfare studies\\n \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\tare you looking for a career that will make a positive impact on the health and well-being of those in your community? or simply looking to build on your knowledge in human services? a qualification in counselling is what you are looking for', '', '', 0, '', 0, '', '', '澳大利亚', 'Australia', '5ad0160e70b3f4197c343139')\n" "C:\\Program Files\\python3.6\\lib\\site-packages\\pymysql\\cursors.py:329: Warning: (1265, \"Data truncated for column 'overview' at row 1\")\n" " self._do_get_result()\n" "倒数第1轮的数据为set(),0\n" "用时 5.654017686843872\n\n" "Process finished with exit code 0\n") matches = re.finditer(regex, test_str, re.MULTILINE) for matchNum, match in enumerate(matches, start=1): print ("Match {matchNum} was found at {start}-{end}: {match}".format(matchNum = matchNum, start = match.start(), end = match.end(), match = match.group())) for groupNum in range(0, len(match.groups())): groupNum = groupNum + 1 print ("Group {groupNum} found at {start}-{end}: {group}".format(groupNum = groupNum, start = match.start(groupNum), end = match.end(groupNum), group = match.group(groupNum))) # Note: for Python 2.7 compatibility, use ur"" to prefix the regex and u"" to prefix the test string and substitution.

Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for Python, please visit: https://docs.python.org/3/library/re.html