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

/
/
gm

Test String

Code Generator

Generated Code

import java.util.regex.Matcher; import java.util.regex.Pattern; public class Example { public static void main(String[] args) { final String regex = "\\d+\\s?(women|men)"; final String string = "OR I GI N AL AR TI CL E\n" + "Home-based interval training increases endurance capacity\n" + "in adults with complex congenital heart disease\n" + "Camilla Sandberg RPT, PhD 1,2\n" + "| Magnus Hedstr€ om MD 1 |\n" + "Karin Wadell RPT, PhD 2\n" + "| Mikael Dellborg MD, PhD 3 | Anders Ahnfelt MD 3 |\n" + "Anna-Klara Zetterstr€ om RPT 4\n" + "| Amanda\n" + "€\n" + "Ohrn RPT 4\n" + "| Bengt Johansson MD, PhD 1\n" + "1 Heart Center and Department of Public\n" + "Health and Clinical Medicine, Umeå\n" + "University, Umeå, Sweden\n" + "2 Department of Community Medicine and\n" + "Rehabilitation, Physiotherapy, Umeå\n" + "University, Umeå, Sweden\n" + "3 Department of Molecular and Clinical\n" + "Medicine, Sahlgrenska Academy, University\n" + "of Gothenburg, Gothenburg, Sweden\n" + "4 Department of Physiotherapy and\n" + "Occupational Therapy, Sahlgrenska\n" + "University Hospital, Gothenburg, Sweden\n" + "Correspondence\n" + "Camilla Sandberg, RPT, PhD, Heart Center\n" + "and Department of Public Health and\n" + "Clinical Medicine, Umeå University,\n" + "SE-90185, Umeå, Sweden.\n" + "Email: camilla.sandberg@umu.se\n" + "Funding information\n" + "Swedish Heart-Lung Foundation, Grant/\n" + "Award Numbers: 20100355, 20130472;\n" + "Heart Foundation of Northern Sweden;\n" + "Research Foundation of The Swedish Heart\n" + "and Lung Association, Grant/Award Num-\n" + "ber: E116/12, E115/13, E129/14; Research\n" + "Foundation of Healthcare Professions\n" + "within Cardiology, Umeå University; Väster-\n" + "bottens läns landsting, Umeå, Sweden,\n" + "Grant/Award Number: 316351; and ALF-\n" + "LUA grants at Sahlgrenska University Hos-\n" + "pital, G€ oteborg, Sweden\n" + "Abstract\n" + "Objective: The beneficial effects of exercise training in acquired heart failure and coronary artery\n" + "disease are well known and have been implemented in current treatment guidelines. Knowledge\n" + "on appropriate exercise training regimes for adults with congenital heart disease is limited, thus\n" + "further studies are needed. The aim of this study was to examine the effect of home-based interval\n" + "exercise training on maximal endurance capacity and peak exercise capacity.\n" + "Design: Randomized controlled trial.\n" + "Methods: Twenty-six adults with complex congenital heart disease were recruited from special-\n" + "ized units for adult congenital heart disease. Patients were randomized to either an intervention\n" + "group—12 weeks of home-based interval exercise training on a cycle ergometer (n516), or a con-\n" + "trol group (n510). The latter was instructed to maintain their habitual physical activities. An\n" + "incremental cardiopulmonary exercise test and a constant work rate cardiopulmonary exercise test\n" + "at 75% of peak workload were performed preintervention and postintervention.\n" + "Results: Twenty-three patients completed the protocol and were followed (intervention n513,\n" + "control n510). Postintervention exercise time at constant work rate cardiopulmonary exercise\n" + "test increased in the intervention group compared to controls (median[range] 12[–4 to 52]min vs 0\n" + "[–4 to 5]min, P5.001). At incremental cardiopulmonary exercise test, peak VO 2 increased 15%\n" + "within the intervention group (P5.019) compared to 2% within the control group (P5.8). How-\n" + "ever, in comparison between the groups no difference was found (285[–200 to 535] ml/min vs 17\n" + "[–380 to 306] ml/min, P5.10). In addition, peak workload at incremental cardiopulmonary exer-\n" + "cise test increased in the intervention group compared to controls (20[–10 to 70]W vs 0[–20 to\n" + "15]W, P5.003).\n" + "Conclusion: Home-based interval exercise training increased endurance capacity and peak exer-\n" + "cise capacity in adults with complex congenital heart disease. Aerobic endurance might be more\n" + "relevant than peak oxygen uptake with regard to daily activities, and therefore a more clinically rel-\n" + "evant measure to evaluate.\n" + "K EY WO RD S\n" + "adult, cardiopulmonary exercise testing, congenital heart disease, constant work rate, exercise\n" + "training, interval training\n" + "254\n" + "|\n" + "V C 2017 Wiley Periodicals, Inc. wileyonlinelibrary.com/journal/chd Congenital Heart Disease. 2018;13:254–262.\n" + "Received: 3 January 2017\n" + "|\n" + "Revised: 21 August 2017\n" + "|\n" + "Accepted: 19 October 2017\n" + "DOI: 10.1111/chd.12562\n" + "1\n" + "|\n" + "INTRODUCTION\n" + "During the past decades there have been substantial improvements\n" + "in survival and reduction in the need of reoperations for adults\n" + "with congenital heart disease (CHD), especially among those with\n" + "more complex lesions. 1–3 There is a well-known impairment in\n" + "exercise capacity in these patients compared to healthy controls. 4,5\n" + "To what extent this impairment is due to abnormal cardiovascular\n" + "physiology, per se, or to other factors such as physical inactivity or\n" + "lack of exercise training, that is, deconditioning, is unknown. Fur-\n" + "thermore, reduced exercise capacity is an important prognostic\n" + "predictor of cardiovascular morbidity and mortality. 6 In addition,\n" + "impaired muscle function has been observed, especially in adults\n" + "with CHD that have complex lesions. 7–10 According to current rec-\n" + "ommendations of the European Society of Cardiology, adults with\n" + "CHD are encouraged to be physically active and exercise training\n" + "should be prescribed individually. 11 However, due largely to the\n" + "low numbers of studies on effects of exercise training in adults\n" + "with CHD, there are no specific recommendations regarding train-\n" + "ing mode, intensity, duration, and frequency. 12,13 Previous studies\n" + "show that exercise training seems to be safe and to have positive\n" + "effects on aerobic exercise capacity without adverse effect on ven-\n" + "tricular function. 14–21 Home-based continuous moderate exercise\n" + "training on an cycle ergometer increased the exercise capacity in\n" + "adults with a systemic right ventricle. 17 In patients with acquired\n" + "heart failure, interval training was shown to improve exercise\n" + "capacity more than continuous moderate exercise training. 22 Inter-\n" + "val training at moderate to high intensity (75%–95% of maximum\n" + "HR) was also reported to be safe and increase exercise capacity in\n" + "these patients. 15,18 To improve adherence to study protocol,\n" + "home-based exercise training has been used in a number of previ-\n" + "ous studies. 17,23,24\n" + "Incremental cardiopulmonary exercise testing (incremental\n" + "CPET) on a cycle ergometer or treadmill is frequently used and often\n" + "considered the “gold standard” when evaluating aerobic exercise\n" + "capacity and change in aerobic capacity after intervention. 25,26\n" + "Changes in peak aerobic capacity, total exercise time and peak work\n" + "load are variables commonly used to report study results. 12 Constant\n" + "work rate CPET is a method commonly used to evaluate endurance\n" + "exercise capacity in patients with chronic obstructive pulmonary dis-\n" + "ease (COPD) 27 and it has emerged as the most responsive test\n" + "method to evaluate change in exercise capacity in these patients\n" + "after rehabilitation intervention. 28 At present, this test has not been\n" + "used to evaluate outcome of exercise training in the setting of adult\n" + "CHD.\n" + "The present study was a randomized controlled trial that used\n" + "CPET aimed to evaluate the effect of home-based interval exercise\n" + "training on submaximal exercise capacity (endurance) and peak exercise\n" + "capacity (peak work load, peak oxygen uptake) in adults with complex\n" + "CHD. The hypothesis was that interval training increases endurance\n" + "capacity as well as peak exercise capacity in an intervention group\n" + "compared to a control group.\n" + "2\n" + "|\n" + "METHODS\n" + "2.1\n" + "| Study population\n" + "Twenty-six patients (13 women) with complex CHD and reduced exer-\n" + "cise capacity were recruited from specialized units for adults with CHD\n" + "in the northern health care region (Umeå) and the region of Västra\n" + "G€ otaland (G€ oteborg) in Sweden. The inclusion criteria were complex\n" + "CHD, as defined by Erikssen et al., 1 (eg, palliated with variants of Fontan\n" + "procedure [Fontan/TCPC], pulmonary atresia [PA], tetralogy of Fallot\n" + "[ToF], congenitally corrected transposition of the great arteries [ccTGA],\n" + "dextro-transposition of the great arteries repaired with Mustard or Sen-\n" + "ning procedure [d-TGA]), clinically stable condition over the past 3\n" + "months, adult age (?18 years of age), and informed consent. The\n" + "patients with PA, as well as those with ToF, had undergone surgical\n" + "repair and were not cyanotic. The exclusion criteria were present strat-\n" + "egy for executing exercise training?2 times/week aimed at increasing\n" + "or sustaining exercise capacity, arrhythmia or other adverse events (eg,\n" + "important symptoms, drop in blood pressure) at CPET, clinically relevant\n" + "arrhythmia, intellectual disability or mental illness affecting independent\n" + "decision making, extracardiac disease affecting physical activity, peak\n" + "VO 2 >30ml/kg/min at run-in CPET, or no internet access. At the time\n" + "of screening (October 25, 2012) the outpatient register of CHD in the\n" + "northern health care region, 391 patients were registered. Seventy-\n" + "seven patients met the inclusion criteria of complex CHD. Of these, 39\n" + "patients met at least one exclusion criteria. Thus, 38 patients were eligi-\n" + "ble and were asked to participate; 17 declined participation, 1 was\n" + "excluded due to arrhythmia (short periods of atrial fibrillation) and 1\n" + "was excluded due to peak VO 2 ?30 ml/kg/min at run-in CPET and 19\n" + "(53%) were finally included. There were no differences regarding age\n" + "and sex between those who declined participation and those who par-\n" + "ticipated. In the region of Västra G€ otaland, a convenience sample was\n" + "collected, that is, when patients fulfilling the inclusion criteria were\n" + "scheduled for a regular follow-up visit they were asked to participate.\n" + "Thus, these patients were not strictly consecutively recruited. Eight\n" + "patients were tested with run-in CPET, of these 1 was excluded due to\n" + "arrhythmia. This gave an additional 7 patients. Finally, a total of 26\n" + "patients were included and were randomized to an exercise-training\n" + "group, that is, intervention group (n516), or a control group (n510).\n" + "Two patients that had been randomized to the intervention group dis-\n" + "continued study participation due to personal reasons. For another\n" + "patient, the exercise training was discontinued after 14 training sessions\n" + "due to the patient experiencing discomfort and possible arrhythmia.\n" + "Therefore, 23 patients consisting of 13 in the intervention group and 10\n" + "in the control group were followed after intervention. All patients gave\n" + "their written informed consent for participation. The study was\n" + "approved by the regional Ethics Review Board in Umeå (Dnr 2011-51-\n" + "31 M, 2011-03-29, and 2012-143-32 M, 2012-04-04).\n" + "2.2\n" + "| Exercise capacity\n" + "At the incremental CPET peak VO 2 , peak work load, respiratory\n" + "exchange ratio (RER) and peak heart rate were registered. 25 To ensure\n" + "standardization, the participants were instructed that when rating ?17\n" + "SANDBERG ET AL .\n" + "|\n" + "255\n" + "(very hard) on the Borg Rated Perceived Exertion scale, 29 this corre-\n" + "sponded to perceived exertion of “not coping with an additional\n" + "increase of work load.” The subsequent endurance test, constant work\n" + "rate CPET, was performed at 75% of peak work load that had been\n" + "achieved at the initial incremental CPET. The exercise test duration\n" + "was the main outcome. 27,30 In one patient in the intervention group,\n" + "the postintervention constant work rate CPET was not performed due\n" + "to technical issues. Therefore, for this patient we only used the incre-\n" + "mental CPET data. For pre- and postexercise tests the Jaeger Oxycon\n" + "Pro CareFusion (GmbH, Hoechberg, Germany) or Schiller CS-200 Ergo-\n" + "spirometry (Schiller AG, Baar, Switzerland) was used for analysis of\n" + "breathing-gases.\n" + "2.3\n" + "| Randomization process\n" + "The present study was a two-armed randomized controlled trial.\n" + "Patients were randomly assigned to intervention or control group in\n" + "the ratio of 2:1 that was applied by computer generated block random-\n" + "ization. The group allocation sequence was kept in an opaque, sealed,\n" + "and stapled envelope to prevent prior knowledge, and was revealed to\n" + "patients and researchers after completion of run-in tests. At the first\n" + "center, the technicians performing the tests and the physician (MH)\n" + "analyzing the tests were blinded for group allocation. Furthermore, the\n" + "patients were instructed not to reveal their group allocation. At the\n" + "second center, the investigators were not blinded. However, the tests\n" + "strictly followed the prespecified protocol.\n" + "2.4\n" + "| Exercise training protocol\n" + "The exercise training was home-based and was performed three times\n" + "a week for 12 weeks on a cycle ergometer with a manually adjusted\n" + "brake system (Tunturi T 20/Tunturi, Tunturi- Hellberg Oy Ltd, Åbo, Fin-\n" + "land or Bremshey BF3, Escalade Int. Ltd, Nottingham, UK). The time\n" + "between completion of the run-in tests, and start of intervention was\n" + "approximately 1 week due to delivery of the cycle ergometers. To indi-\n" + "vidually adjust the intensity of the exercise training protocol, the train-\n" + "ing heart rate (THR) was calculated according to the Karvonen method\n" + "based on the individual peak heart rate. 31 In addition to the heart rate\n" + "intervals, patients were instructed to achieve perceived exertion corre-\n" + "sponding to BORG 15–16. 29 All patients randomized to exercise train-\n" + "ing received one occasion with familiarization training. The exercise\n" + "training had an initial 8 min warm-up without load or with very low\n" + "load. During the first 2 weeks the protocol consisted of three intervals\n" + "at THR 75%-80%, and thereafter four intervals. The duration of the inter-\n" + "vals was also individually adjusted according to total exercise time dur-\n" + "ing the initial constant work rate CPET. When the total time at\n" + "constant work rate CPET was less than 5 minutes, the interval time\n" + "was calculated as total exercise time minus 1 minute. The maximum\n" + "interval time was 5 minutes. The intervals were separated by an active\n" + "recovery periods of 3 minutes without load or with very low load (Sup-\n" + "porting Information Figure S1). During the exercise training sessions,\n" + "participants wore a heart rate monitor (Polar RS 300X, Polar Electro\n" + "Oy, Kempele, Finland). The registered heart rate was regularly\n" + "transferred to a personal webpage that was accessed by the physio-\n" + "therapist and participant. A weekly contact by phone was used to pro-\n" + "mote compliance, to provide feedback, and, when appropriate, to\n" + "increase training time if a shorter interval time than 5 minutes. The par-\n" + "ticipants were instructed to pay attention to symptoms such as dizzi-\n" + "ness, palpitations, chest pain, and other experiences of discomfort, and\n" + "if these occurred, abort exercise and contact investigators. The maxi-\n" + "mum number of training sessions was 36 and the goal was that every\n" + "participant should complete a minimum of 28 (78%) sessions. The\n" + "patients randomized to control group were instructed to continue with\n" + "their habitual physical activities.\n" + "2.5\n" + "| Questionnaires\n" + "In addition to exercise test data, self-reported quality of life was eval-\n" + "uated using the EuroQol Vertical Visual Analogue Scale (EQ-VAS). 32\n" + "The Hospital Anxiety and Depression scale (HADS) 33,34 was used for\n" + "assessing prevalence of anxiety and depression. Finally, self-efficacy for\n" + "exercise was evaluated using the Exercise Self-Efficacy Scale (ESE). 35\n" + "All three scales are validated and were used preintervention and\n" + "postintervention.\n" + "2.6\n" + "| Statistics\n" + "The data were tested for normality. Data are presented as mean 61\n" + "standard deviation (SD) or median with range (min-max). Differences\n" + "in means, ranks, and ratios were tested by Student’s t test, Mann-\n" + "Whitney U test, or chi-square test as appropriate. Paired samples t\n" + "test and Wilcoxon’s signed ranks test were applied for within group\n" + "comparisons. The null-hypothesis was rejected for P values<.05. All\n" + "calculations were performed using SPSS 22 (IBM, Armonk, NY,\n" + "USA).\n" + "3\n" + "|\n" + "RESULTS\n" + "Twenty-three patients were analyzed after follow-up that included 13\n" + "in the intervention group and 10 in the control group. There were no\n" + "differences in baseline data between the intervention group and con-\n" + "trol group (Tables 1–3). In the population, the mean predicted peak\n" + "heart rate was 88%67.5% and the mean predicted peak VO 2 was\n" + "72%613.7%. Moreover, there were no differences between interven-\n" + "tion group and control group regarding these data.\n" + "3.1\n" + "| Exercise capacity\n" + "The median test duration at constant work rate CPET increased 89%\n" + "post intervention in the intervention group compared to no change in\n" + "the control group (median[range] 12[–4 to 52] min vs 0[–4 to 5] min,\n" + "P5.001). Furthermore, the peak workload (20[–10 to 70] W vs 0[–20\n" + "to 15] W, P5.003) at incremental CPET increased post intervention in\n" + "the intervention group compared to the controls. The peak VO 2 (ml/\n" + "min) at incremental CPET increased 15% within the intervention group\n" + "(P5.019) compared to no change (2%) within the control group\n" + "(P5.8). The results were similar regarding VO 2 indexed for body\n" + "256 | SANDBERG ET AL .\n" + "weight and peak O 2 pulse. However, in comparison between the inter-\n" + "vention group and control group no differences were found regarding\n" + "absolute peak VO 2 (ml/min) or peak VO 2 indexed to body weight (ml/\n" + "kg/min) (285[–200 to 535] ml/min vs 17[–380 to 306] ml/min, P5.10)\n" + "(3.6[–2.6 to 6.4] ml/kg/min vs 0.6[–3.5 to 4.9] ml/kg/min, P5.12).\n" + "Furthermore, the increase in peak O 2 pulse did not differ between\n" + "the groups (1.3[–1.7 to 4.2] ml/heartbeat vs 0.4[–1.2 to 2.4], P5.21\n" + "(Table 2, Figure 1A–D).\n" + "3.2\n" + "| EQ-VAS, HADS, and ESE\n" + "No differences were found within or between groups preintervention\n" + "and postintervention regarding self-reported QoL, prevalence of anxi-\n" + "ety and depression or exercise self-efficacy (Table 3).\n" + "3.3\n" + "| Compliance\n" + "Compliance to exercise training protocol, defined as the number of\n" + "completed training sessions in relation to the possible number of ses-\n" + "sions, was in mean 79%617 (median 83%, 47%–100%). The number\n" + "of registered exercise occasions ranged from 17 to 36 of 36 possible\n" + "occasions.\n" + "3.4\n" + "| Adverse event\n" + "In one case, the exercise training was discontinued due to the patient\n" + "experiencing discomfort and possible arrhythmia during a session of\n" + "exercise training. No arrhythmia was detected on a subsequent exer-\n" + "cise test or at Holter registration. No other adverse events occurred.\n" + "TABLE 1 Descriptive data on included patients\n" + "All patients (n523) Intervention group (n513) Controls (n510) P value\n" + "Sex\n" + "M n (%) 12(52) 8(62) 4(40) .31\n" + "F n (%) 11(48) 5(39) 6(60)\n" + "Age, years Median(IQR) 30.1(22.9–36.6) 31.3(26.9–36.6) 26.3(22.9–35.6) .38\n" + "Height, m Mean6SD 1.72(0.10) 1.72(0.09) 1.72(0.10) .85\n" + "Weight, kg Mean6SD 77(15) 77(10) 76(21) .90\n" + "BMI, kg/m 2 Mean6SD 25.8(3.9) 26.0(3.6) 25.5(4) .77\n" + "Diagnosis n (%)\n" + "ToF 5(22) 4(31) 1(10) .19\n" + "ccTGA 3(13) 3(23) 0(0)\n" + "d-TGA 5(22) 2(15) 3(30)\n" + "TCPC 5(22) 3(23) 2(20)\n" + "PA 2(9) 0(0) 2(20)\n" + "Complete AV-septal defect 1(4) 0(0) 1(10)\n" + "Ebstein 1(4) 0(0) 1(10)\n" + "Miscellaneous 1(4) 1(8) 0(0)\n" + "Surgical intervention, yes n (%) 21(91) 11(85) 10(100) .19\n" + "Age at intervention, years* median(IQR) 3.1(1.1–6.8) 3.6(1.2–7.6) 3.0(0.7-6.1) .74\n" + "PM, yes n (%) 2(9) 2(15) 0(0) .19\n" + "Cardiovascular medication, yes n (%) 10(44) 5(39) 5 (50) .58\n" + "ACE/ARB n (%) 6(26) 4(31) 2(20) .56\n" + "Beta-blockers n (%) 2(9) 1(8) 1(10) .85\n" + "Diuretics n (%) 2(9) 1(8) 1(10) .85\n" + "Warfarin n (%) 5(22) 3(23) 2(20) .86\n" + "Aspirin n (%) 3(13) 2(15) 1(10) .70\n" + "Abbreviations: ACE, angiotensin converting enzyme; ARB, angiotensin receptor-2 blockers; AV, atrioventricular; ccTGA, congenitally corrected transposi-\n" + "tion of the great arteries; d-TGA, dextro-transposition of the great arteries; F, female; IQR, interquartile range; M, male; n, number; PA, pulmonary atre-\n" + "sia; PM, pacemaker; TCPC, total cavo-pulmonary connection; ToF, tetralogy of Fallot.\n" + "*Age at TCPC surgery or correction or ToF. Presented P values represent comparison between intervention group and controls. Mann-Whitney U test\n" + "was applied in comparison of age and age at intervention; in all other comparisons chi-square or Student’s t test was used.\n" + "SANDBERG ET AL .\n" + "|\n" + "257\n" + "4\n" + "|\n" + "DISCUSSION\n" + "This is the first study to evaluate endurance capacity in addition to\n" + "peak aerobic capacity after exercise training in adults with complex\n" + "CHD. The present study shows that home-based high intensity interval\n" + "training on a cycle ergometer has a great impact on endurance capacity\n" + "as well as on maximum exercise capacity in adults with complex CHD.\n" + "4.1\n" + "| Exercise capacity\n" + "Peak VO 2 (ml/min) increased within the intervention group but not in\n" + "comparison to the control group. However, the peak work rate for the\n" + "intervention group increased in comparison to the control group which\n" + "altogether indicates an improvement in peak aerobic capacity. The\n" + "increase in peak VO 2 in previous studies was approximately 8%, 14,15,18\n" + "and in the present study the corresponding increase within the inter-\n" + "vention group was 15%. An increase in aerobic capacity could be of\n" + "significance in daily activities. In patients with complex congenital heart\n" + "lesions, especially with impaired NYHA class, activities of daily living\n" + "might be in line with or even exceed their individual exercise capacity. 5\n" + "In these cases, an exercise training induced improvement of exercise\n" + "capacity could play an important role in coping with activities of daily\n" + "living. In adults with complex CHD, the central adaption to exercise\n" + "training is usually blunted, 36,37 which might lead peripheral mecha-\n" + "nisms, that is, increased muscle capillarization and oxidative capacity, to\n" + "play an even greater role in the response to exercise training. 38 The\n" + "important increase in endurance capacity may actually reflect this\n" + "mechanism. It is noteworthy that modest increases in peak VO 2 (ml/\n" + "min) and peak work rate after exercise training corresponded to a sub-\n" + "stantial increase in time duration at constant work rate CPET; this\n" + "result was previously reported in patients with COPD. 28,39 Our results\n" + "imply that endurance capacity might be a more clinically relevant mea-\n" + "sure of change in exercise capacity after exercise training in adults with\n" + "complex CHD.\n" + "4.2\n" + "| Exercise testing\n" + "Peak VO 2 derived from incremental CPET is frequently used and often\n" + "considered the “gold standard” measure of peak aerobic exercise\n" + "capacity. 25,26 When assessing the peak aerobic exercise capacity, it is\n" + "important that the test is performed with maximum effort. The\n" + "RER?1.10 is considered as a measure of maximum effort being\n" + "reached. 25 In the present study, this limit was reached by the majority\n" + "of the participants (Table 2). However, in adults with complex CHD dif-\n" + "ficulties in reaching this limit was previously reported. 6,40 This phenom-\n" + "enon was to some extent also observed in our population. Pulmonary\n" + "limitation of the exercise capacity has been proposed to cause this lim-\n" + "ited ability to reach RER ?1.10. 25 Recently, submaximal outcome\n" + "measures calculated from the incremental CPET, that is, ventilatory\n" + "anaerobic threshold (VAT), oxygen uptake efficiency slope (OUES), and\n" + "VE/VCO 2 slope, have emerged as useful in evaluation of exercise\n" + "capacity and as prognostic tools. Furthermore, these parameters do not\n" + "require a test performed with maximum effort. 26,40,41 In our study, we\n" + "TABLE 2 Preintervention, postintervention, and change in cardiopulmonary exercise test data in intervention group vs control group\n" + "Preintervention Postintervention Change after intervention\n" + "Intervention group Control group P Intervention group Control group P Intervention group Control group P\n" + "CPET incremental\n" + "VO 2 peak, ml/min 1865 (1191–2355) 1601 (1215–2650) .74 1870 (1040–2642) 1688 (1326–2367) .26 285 (–200 to 535) 17 (–380 to 306) .10\n" + "VO 2 peak, ml/kg/min 23.4 (14.8–29.4) 23.6 (18.1–28.1) .98 26.9 (13.0–33.6) 24.8 (18.1–28.4) .23 3.6 (–2.6 to 6.4) 0.6 (–3.5 to 4.9) .12\n" + "Peak O 2 pulse, ml/heartbeat 10.3 (7.3–13.7) 9.5 (6.8–15.1) .99 12.0 (8.3–15.0) 10.8 (8.2–14.0) .48 1.3 (–1.7 to 8.5) 0.4 (–1.2 to 2.4) .21\n" + "Peak workload, W 155 (100–220) 150 (110–200) .69 170 (90–240) 140 (110–200) .07 20 (–10 to 70) 0 (–20 to 15) .003\n" + "RER 1.19 (0.99-1.51) 1.22 (1.02-1.36) .61 1.20 (1.13-1.40) 1.20 (0.98-1.29) .52\n" + "Constant work rate at 75% of peak workload:\n" + "Test duration min 14 (4–33) 9 (3–20) .11 28 (8–68) 9 (5–16) .001 12 (–4 to 52) 0 (–4 to 5) .001\n" + "Abbreviations: CPET, cardiopulmonary exercise test; RER, respiratory exchange ratio.\n" + "Data are presented as median (range). Bold text indicates a P value<.05.\n" + "258 | SANDBERG ET AL .\n" + "took this a step further and used a submaximal exercise test in addition\n" + "to the incremental CPET and found a substantially larger (median\n" + "change 12 min, 89%) increase in submaximal exercise capacity in com-\n" + "parison to peak VO 2 (15%). With reference to the patients’ perform-\n" + "ance capacity in daily activities, increased endurance might better\n" + "illustrate the benefits of improved aerobic capacity and thereby be a\n" + "more clinically relevant measure. The increase in endurance capacity\n" + "we found is in line with previous studies in patients with COPD. Pors-\n" + "zasz et al. 39 reported a mean increase of 11.668.1 minutes in duration\n" + "at constant work rate CPET after exercise training, while Cambach\n" + "et al. 42 reported a mean increase of approximately 7 minutes in dura-\n" + "tion. An increase of 1.6–3.3 minutes has been suggested as a minimal\n" + "clinically important difference in response to exercise training in\n" + "patients with COPD. 43,44 In our intervention group, all patients except\n" + "one increased the time duration at constant work rate CPET above this\n" + "suggested level of minimal clinical importance. This particular patient\n" + "did not comply fully with the exercise training protocol fulfilling only\n" + "17 of 36 (47%) of the possible exercise training sessions.\n" + "4.3\n" + "| Exercise training protocol\n" + "As stated in the current recommendations on physical activity and rec-\n" + "reational sports in adults with CHD, exercise prescriptions should be\n" + "individualized. 11 We aimed to provide the patients in the intervention\n" + "group with an individually adjusted exercise training protocol based on\n" + "the results of the cardiopulmonary exercise tests. Different modes of\n" + "exercise training, for example, walking, interval training with step aero-\n" + "bics, and moderate continuous training on a cycle ergometer have been\n" + "used in previous studies. 17,18,23,24 The present study is the first to use\n" + "home-based moderate to high intensity interval exercise training on a\n" + "cycle ergometer in a population of adults with different complex con-\n" + "genital heart lesions. Studies in adults with systemic right ventricle\n" + "have shown that home-based exercise training is safe, feasible and\n" + "effective with regard to exercise capacity without negative effects on\n" + "the systemic right ventricle. 17,18,24 In patients with heart failure, inter-\n" + "val training was reported to improve exercise capacity more than a\n" + "moderate continuous exercise training mode. 22 The present study\n" + "FIGURE 1 A-D, Individual cardiopulmonary exercise test data at baseline, at 12-week follow-up and change from baseline to follow-up in\n" + "intervention group\n" + "TABLE 3 Preintervention, postintervention and change in data regarding self-reported prevalence of anxiety and depression (HADS), quality\n" + "of life (EQ5D VAS), and exercise self-efficacy (ESE)\n" + "Preintervention Postintervention Change after intervention\n" + "Intervention\n" + "group Control group P\n" + "Intervention\n" + "group\n" + "Control\n" + "group P\n" + "Intervention\n" + "group Control group P\n" + "HADS Anxiety 4(1–9) 4(0–7) .69 5(2–9) 6(0–8) .72 1(–3 to 3) 1(0–3) .28\n" + "HADS Depression 2(0–9) 2(0–5) .26 2(0–5) 2(0–6) .97 0(–4 to 2) 0(–1 to 4) .18\n" + "EQ-VAS 77.5(35.0–99.0) 89.5(70.0–99.0) .10 78.8(48.0–99.0) 85.5(35.0–99.0) .31 0(–21.0 to 25.0) 0(–55.0 to 9.0) .42\n" + "ESE 32(16–39) 30(15–40) .88 28(11–40) 29(18–40) .67 25(–12 to 8) 21(–6 to 6) .23\n" + "Abbreviations: EQ-VAS, EuroQol Vertical Visual Analogue Scale; ESE, Exercise Self-Efficacy Scale; HADS, Hospital and Anxiety and Depression scale.\n" + "Data are presented as median (range).\n" + "SANDBERG ET AL .\n" + "|\n" + "259\n" + "showed that home-based interval exercise training increased endur-\n" + "ance capacity as well as peak aerobic exercise capacity in adults with\n" + "complex congenital heart lesions. The finding of markedly increased\n" + "endurance capacity, in addition to peak capacity, contributes important\n" + "information to previous exercise training studies in this population.\n" + "4.4\n" + "| Quality of life\n" + "In CHD, self-reported quality of life is known to be associated with\n" + "physical activity level. 45 Here, we report that self-reported quality of\n" + "life remained unchanged after intervention which is in line with results\n" + "previously shown by others. 15 In contrast, positive effects of exercise\n" + "on quality of life has been reported. 23 The population in the present\n" + "study rated their quality of life as rather high preintervention which\n" + "might explain the unchanged results.\n" + "4.5\n" + "| Compliance\n" + "As many patients with complex heart lesions are in the “middle of life”\n" + "and occupied with studies, work, children, and family activities, a\n" + "home-based exercise training protocol was chosen to improve adher-\n" + "ence to study protocol. In addition, participants were contacted by\n" + "phone every week, which probably also contributed to compliance. The\n" + "mean compliance in the present study (79%) was in line with previously\n" + "presented results (68%-77%). 14,17,18\n" + "4.6\n" + "| Limitations\n" + "As in previously presented studies on exercise training in adults with\n" + "CHD, our study population was rather small which somewhat limits the\n" + "generalizability of the results. However, the results are in line with pre-\n" + "vious studies which further strengthen exercise training as a part of the\n" + "rehabilitation of adults with complex CHD. Furthermore, our study\n" + "population consisted of patients with different complex diagnoses that\n" + "to a greater extent reflect the diversity seen in the clinic, thus enhanc-\n" + "ing the generalizability.\n" + "This study was performed at two centers. The center recruiting 5\n" + "patients (22%) was not able to keep the investigators performing the\n" + "exercise tests strictly blinded for group allocation. However, there was\n" + "a prespecified protocol that was strictly followed in both centers. Fur-\n" + "thermore, the same center had a different recruitment strategy that\n" + "possibly could involve patients with more frequent clinical visits and\n" + "thus potentially patients with more complex lesions. However, the\n" + "numbers are small and the two patients performing the exercise proto-\n" + "col did not obviously differ from the rest of the study population.\n" + "One concern of the constant work rate CPET that has been dis-\n" + "cussed previously in patients with COPD is the power/duration rela-\n" + "tionship. 28 This means that the endurance time varies depending on\n" + "the workload (power) used during the test. However, there is no con-\n" + "sensus on optimal power to use which complicates comparison of\n" + "results between studies. To standardize, we used 75% of peak work\n" + "rate that was used previously in COPD patients. 39,42\n" + "4.7\n" + "| Conclusions\n" + "Home-based interval exercise training increased the endurance\n" + "capacity at 75% of peak work load by 12 minutes as well as peak exer-\n" + "cise capacity in adults with different complex congenital heart lesions.\n" + "Substantially increased endurance capacity in the spectrum of daily\n" + "activities is what most patients need. Therefore, endurance capacity\n" + "might be a more clinically relevant target than solely peak oxygen\n" + "uptake in patients with complex congenital heart lesions.\n" + "ACKNOWLEDGMENT\n" + "We are grateful to the personnel at the department of Clinical Phys-\n" + "iology at the Heart Center, Umeå University Hospital who con-\n" + "ducted the exercise tests and to the staff at the GUCH-center in\n" + "G€ oteborg.\n" + "CLINICAL TRIAL REGISTRATION\n" + "ClinicalTrials.gov, identification:NCT01671566\n" + "CONFLICT OF INTEREST\n" + "None\n" + "AUTHOR CONTRIBUTIONS\n" + "All authors read and approved the final version of the manuscript.\n" + "Concept/design: Camilla Sandberg, Magnus Hedstr€ om, Karin Wadell,\n" + "Mikael Dellborg, Bengt Johansson\n" + "Data collection: Camilla Sandberg, Magnus Hedstr€ om, Mikael Dell-\n" + "borg, Anders Ahnfelt, Anna-Klara Zetterstr€ om Amanda\n" + "€\n" + "Ohrn, Bengt\n" + "Johansson\n" + "Data analysis: Camilla Sandberg, Magnus Hedstr€ om, Mikael Dellborg,\n" + "Bengt Johansson\n" + "Interpretation: Camilla Sandberg, Magnus Hedstr€ om, Mikael Dellborg,\n" + "Anders Ahnfelt, Bengt Johansson\n" + "Drafting: Camilla Sandberg, Karin Wadell, Bengt Johansson\n" + "Critical revision: Camilla Sandberg, Magnus Hedstr€ om, Karin Wadell,\n" + "Mikael Dellborg, Anders Ahnfelt, Anna-Klara Zetterstr€ om, Amanda\n" + "€\n" + "Ohrn, Bengt Johansson\n" + "Approval of article: Camilla Sandberg, Magnus Hedstr€ om, Karin\n" + "Wadell, Mikael Dellborg, Anders Ahnfelt, Anna-Klara Zetterstr€ om,\n" + "Amanda\n" + "€\n" + "Ohrn, Bengt Johansson\n" + "ORCID\n" + "Camilla Sandberg RPT, PhD http://orcid.org/0000-0002-4043-7130\n" + "REFERENCES\n" + "[1] Erikssen G, Liestøl K, Seem E, et al. Achievements in congenital\n" + "heart defect surgery: a prospective, 40-year study of 7038 patients.\n" + "Circulation. 2015;131(4):337–346.\n" + "[2] Raissadati A, Nieminen H, Jokinen E, Sairanen H. Progress in late\n" + "results among pediatric cardiac surgery patients: a population-based\n" + "6-decade study with 98% follow-up. Circulation. 2015;131(4):\n" + "347–353.\n" + "260 | SANDBERG ET AL .\n" + "[3] Moons P, Bovijn L, Budts W, Belmans A, Gewillig M. Temporal\n" + "trends in survival to adulthood among patients born with congenital\n" + "heart disease from 1970 to 1992 in Belgium. Circulation. 2010;122\n" + "(22):2264–2272.\n" + "[4] Fredriksen PM, Veldtman G, Hechter S, et al. Aerobic capacity in\n" + "adults with various congenital heart diseases. Am J Cardiol. 2001;87\n" + "(3):310–314.\n" + "[5] Kempny A, Dimopoulos K, Uebing A, et al. Reference values for\n" + "exercise limitations among adults with congenital heart disease.\n" + "Relation to activities of daily life–single centre experience and\n" + "review of published data. Eur Heart J. 2012;33(11):1386–1396.\n" + "[6] Diller GP, Dimopoulos K, Okonko D, et al. Exercise intolerance in\n" + "adult congenital heart disease: comparative severity, correlates, and\n" + "prognostic implication. Circulation. 2005;112(6):828–835.\n" + "[7] Greutmann M, Le TL, Tobler D, et al. Generalised muscle weakness\n" + "in young adults with congenital heart disease. Heart. 2011;97(14):\n" + "1164–1168.\n" + "[8] Kr€ o€ onstr€ om LA, Johansson L, Zetterstr€ om AK, Dellborg M, Eriksson\n" + "P, Cider Å. Muscle function in adults with congenital heart disease.\n" + "Int J Cardiol. 2014;170(3):358–363.\n" + "[9] Sandberg C, Thil? en U, Wadell K, Johansson B. Adults with complex\n" + "congenital heart disease have impaired skeletal muscle function and\n" + "reduced confidence in performing exercise training. Eur J Prev Car-\n" + "diol. 2014;22(12):1523–1530.\n" + "[10] Cordina R, O’meagher S, Gould H, et al. Skeletal muscle abnormal-\n" + "ities and exercise capacity in adults with a Fontan circulation. Heart.\n" + "2013;99(20):1530–1534.\n" + "[11] Budts W, B€ orjesson M, Chessa M, et al. Physical activity in adoles-\n" + "cents and adults with congenital heart defects: individualized exer-\n" + "cise prescription. Eur Heart J. 2013;34(47):3669–3674.\n" + "[12] Duppen N, Takken T, Hopman MTE, et al. Systematic review of the\n" + "effects of physical exercise training programmes in children and\n" + "young adults with congenital heart disease. Int J Cardiol. 2013;168\n" + "(3):1779–1787.\n" + "[13] Chaix MA, Marcotte F, Dore A, et al. Risks and benefits of exercise\n" + "training in adults with congenital heart disease. Can J Cardiol. 2016;\n" + "32(4):459–466.\n" + "[14] Therrien J, Fredriksen P, Walker M, Granton J, Reid GJ, Webb G. A\n" + "pilot study of exercise training in adult patients with repaired tetral-\n" + "ogy of Fallot. Can J Cardiol. 2003;19:685–689.\n" + "[15] Winter MM, van der Bom T, de Vries LC, et al. Exercise training\n" + "improves exercise capacity in adult patients with a systemic right ven-\n" + "tricle: a randomized clinical trial. Eur Heart J. 2012;33(11):1378–1385.\n" + "[16] Cordina RL, O’meagher S, Karmali A, et al. Resistance training\n" + "improves cardiac output, exercise capacity and tolerance to positive\n" + "airway pressure in Fontan physiology. Int J Cardiol. 2013;168(2):\n" + "780–788.\n" + "[17] Westhoff-Bleck M, Schieffer B, Tegtbur U, et al. Aerobic training in\n" + "adults after atrial switch procedure for transposition of the great\n" + "arteries improves exercise capacity without impairing systemic right\n" + "ventricular function. Int J Cardiol. 2013;170(1):24–29.\n" + "[18] Shafer KM, Janssen L, Carrick-Ranson G, et al. Cardiovascular\n" + "response to exercise training in the systemic right ventricle of\n" + "adults with transposition of the great arteries. J Physiol. 2015;593\n" + "(11):2447–2458.\n" + "[19] Duppen N, Etnel JR, Spaans L, et al. Does exercise training improve\n" + "cardiopulmonary fitness and daily physical activity in children and\n" + "young adults with corrected tetralogy of Fallot or Fontan circula-\n" + "tion? A randomized controlled trial. Am Heart J. 2015;170(3):\n" + "606–614.\n" + "[20] Duppen N, Geerdink LM, Kuipers IM, et al. Regional ventricular per-\n" + "formance and exercise training in children and young adults after\n" + "repair of tetralogy of Fallot: randomized controlled pilot study. Cir-\n" + "culation Cardiovasc Imaging. 2015;8(4):e002006.\n" + "[21] Duppen N, Kapusta L, de Rijke YB, et al. The effect of exercise\n" + "training on cardiac remodelling in children and young adults with\n" + "corrected tetralogy of Fallot or Fontan circulation: A randomized\n" + "controlled trial. Int J Cardiol. 2015;179:97–104.\n" + "[22] Wisløff U, Støylen A, Loennechen JP, et al. Superior cardiovascular\n" + "effect of aerobic interval training versus moderate continuous train-\n" + "ing in heart failure patients: a randomized study. Circulation. 2007;\n" + "115(24):3086–3094.\n" + "[23] Dua JS, Cooper AR, Fox KR, Graham Stuart A. Exercise training in\n" + "adults with congenital heart disease: Feasibility and benefits. Int J\n" + "Cardiol. 2010;138(2):196–205.\n" + "[24] Winter MM, van der Bom T, de Vries LC, et al. Exercise\n" + "training improves exercise capacity in adult patients with a systemic\n" + "right ventricle: a randomized clinical trial. Eur Heart J. 2011;33(11):\n" + "1378–1385.\n" + "[25] Balady GJ, Arena R, Sietsema K, et al. Clinician’s Guide to cardiopul-\n" + "monary exercise testing in adults: a scientific statement from the\n" + "American Heart Association. Circulation. 2010;122(2):191–225.\n" + "[26] Mezzani A, Agostoni P, Cohen-Solal A, et al. Standards for the use\n" + "of cardiopulmonary exercise testing for the functional evaluation of\n" + "cardiac patients: a report from the Exercise Physiology Section of\n" + "the European Association for Cardiovascular Prevention and Reha-\n" + "bilitation. Eur J Cardiovasc Prev Rehabil. 2009;16(3):249–267.\n" + "[27] Clinical exercise testing with reference to lung diseases: indications,\n" + "standardization and interpretation strategies. ERS Task Force on\n" + "Standardization of Clinical Exercise Testing. European Respiratory\n" + "Society. Eur Respir J. 1997;10:2662–2689.\n" + "[28] Borel B, Provencher S, Saey D, Maltais F. Responsiveness of various\n" + "exercise-testing protocols to therapeutic interventions in COPD.\n" + "Pulm Med. 2013;2013:410748.\n" + "[29] Borg G. Borgs Perceived Exertion and Pain Scales. West Yorkshire,\n" + "UK: Human Kinetics; 1998:46–49.\n" + "[30] Ferrazza AM, Martolini D, Valli G, Palange P. Cardiopulmonary exer-\n" + "cise testing in the functional and prognostic evaluation of patients\n" + "with pulmonary diseases. Respiration. 2009;77(1):3–17.\n" + "[31] Kenney WL, Wilmore JH, Costill DL. Physiology of Sport and Exer-\n" + "cise. 5th ed. West Yorkshire, UK: Human Kinetics; 2012:471–521.\n" + "[32] The EuroQol Group. EuroQol–a new facility for the measurement\n" + "of health-related quality of life. Health Policy. 1990;16:199–208.\n" + "[33] Zigmond AS, Snaith RP. The hospital anxiety and depression scale.\n" + "Acta Psychiatr Scand. 1983;67(6):361–370.\n" + "[34] Bjelland I, Dahl AA, Haug TT, Neckelmann D. The validity of the\n" + "hospital anxiety and depression scale. An updated literature review.\n" + "J Psychosom Res. 2002;52(2):69–77.\n" + "[35] Ahlstr€ om I, Hellstr€ om K, Emtner M, Anens E. Reliability of the\n" + "Swedish version of the Exercise Self-Efficacy Scale (S-ESES): a test-\n" + "retest study in adults with neurological disease. Physiother Theory\n" + "Pract. 2015;31(3):194–199.\n" + "[36] Ohuchi H, Hiraumi Y, Tasato H, et al. Comparison of the right and\n" + "left ventricle as a systemic ventricle during exercise in patients with\n" + "congenital heart disease. Am Heart J. 1999;137(6):1185–1194.\n" + "[37] Norozi K, Wessel A, Alpers V, et al. Chronotropic incompetence in\n" + "adolescents and adults with congenital heart disease after cardiac\n" + "surgery. J Card Fail. 2007;13(4):263–268.\n" + "[38] Bassareo PP, Saba L, Solla P, Barbanti C, Marras AR, Mercuro G.\n" + "Factors influencing adaptation and performance at physical exercise\n" + "SANDBERG ET AL .\n" + "|\n" + "261\n" + "in complex congenital heart diseases after surgical repair. Biomed\n" + "Res Int. 2014;2014:862372.\n" + "[39] Porszasz J, Emtner M, Goto S, Somfay A, Whipp BJ, Casaburi R.\n" + "Exercise training decreases ventilatory requirements and exercise-\n" + "induced hyperinflation at submaximal intensities in patients with\n" + "COPD. Chest. 2005;128(4):2025–2034.\n" + "[40] Buys R, Cornelissen V, Van De Bruaene A, et al. Measures of exer-\n" + "cise capacity in adults with congenital heart disease. Int J Cardiol.\n" + "2011;153(1):26–30.\n" + "[41] Reybrouck T, Mertens L, Brusselle S, et al. Oxygen uptake versus\n" + "exercise intensity: a new concept in assessing cardiovascular exer-\n" + "cise function in patients with congenital heart disease. Heart. 2000;\n" + "84(1):46–52.\n" + "[42] Cambach W, Chadwick-Straver R, Wagenaar R, van Keimpema A,\n" + "Kemper H. The effects of a community-based pulmonary rehabilita-\n" + "tion programme on exercise tolerance and quality of life: a random-\n" + "ized controlled trial. Eur Respir J. 1997;10(1):104–113.\n" + "[43] Casaburi R. Factors determining constant work rate exercise toler-\n" + "ance in COPD and their role in dictating the minimal clinically\n" + "important difference in response to interventions. COPD. 2005;2(1):\n" + "131–136.\n" + "[44] Laviolette L, Bourbeau J, Bernard S, et al. Assessing the impact of\n" + "pulmonary rehabilitation on functional status in COPD. Thorax.\n" + "2008;63(2):115–121.\n" + "[45] Sandberg C, Engstr€ om KG, Dellborg M, Thil? en U, Wadell K, Johans-\n" + "son B. The level of physical exercise is associated with self-reported\n" + "health status (EQ-5D) in adults with congenital heart disease. Eur J\n" + "Prev Cardiol. 2015;22(2):240–248.\n" + "SUPPORTING INFORMATION\n" + "Additional Supporting Information may be found online in the sup-\n" + "porting information tab for this article.\n" + "FIGURE S1 Example of the interval exercise training protocol. The\n" + "exercise training session had an initial 8 min warm-up without load\n" + "or with very low load. During the first two weeks, the protocol con-\n" + "sisted of three intervals and thereafter four intervals. The work load\n" + "during each interval was adjusted by the patient to reach the indi-\n" + "vidual training heart rate. The patients were also instructed to reach\n" + "a perceived exertion corresponding to 14-16 on the Borg scale. The\n" + "intervals were separated by an active recovery periods of 3 minutes\n" + "without load or with very low load. Each session ended with a cool\n" + "down period of approximately 5 min\n" + "How to cite this article: Sandberg C, Hedstr€ om M, Wadell K,\n" + "et al. Home-based interval training increases endurance capac"; final Pattern pattern = Pattern.compile(regex, Pattern.MULTILINE); final Matcher matcher = pattern.matcher(string); while (matcher.find()) { System.out.println("Full match: " + matcher.group(0)); for (int i = 1; i <= matcher.groupCount(); i++) { System.out.println("Group " + i + ": " + matcher.group(i)); } } } }

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 Java, please visit: https://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html