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"
"
g

Test String

Code Generator

Generated Code

#include <StringConstants.au3> ; to declare the Constants of StringRegExp #include <Array.au3> ; UDF needed for _ArrayDisplay and _ArrayConcatenate Local $sRegex = "(?P<selector>\$[\w\-]+)\s*:\s*(?P<properties>[^;]*?)\s*\;" Local $sString = "$bootstrap-sass-asset-helper: false !default;" & @CRLF & _ "// Cosmo 3.3.6" & @CRLF & _ "// Variables" & @CRLF & _ "// --------------------------------------------------" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//== Colors" & @CRLF & _ "//" & @CRLF & _ "//## Gray and brand colors for use across Bootstrap." & @CRLF & _ "" & @CRLF & _ "$gray-base: #000 !default;" & @CRLF & _ "$gray-darker: lighten($gray-base, 13.5%) !default; // #222" & @CRLF & _ "$gray-dark: lighten($gray-base, 20%) !default; // #333" & @CRLF & _ "$gray: lighten($gray-base, 33.5%) !default; // #555" & @CRLF & _ "$gray-light: lighten($gray-base, 60%) !default; // #999" & @CRLF & _ "$gray-lighter: lighten($gray-base, 90%) !default; // #eee" & @CRLF & _ "" & @CRLF & _ "$brand-primary: #0092d9 !default;" & @CRLF & _ "$brand-success: #3FB618 !default;" & @CRLF & _ "$brand-info: #3FB618 !default;" & @CRLF & _ "$brand-warning: #3FB618 !default;" & @CRLF & _ "$brand-danger: #3FB618 !default;" & @CRLF & _ "$txt-blanco: #fff !default;" & @CRLF & _ "$fdo-blanco: #fff !default;" & @CRLF & _ "" & @CRLF & _ "$cdad-base: #221d4d !default;" & @CRLF & _ "$cdad-darker: lighten($cdad-base, 13.5%) !default; // " & @CRLF & _ "$cdad-dark: lighten($cdad-base, 20%) !default; // " & @CRLF & _ "$cdad: lighten($cdad-base, 33.5%) !default; //" & @CRLF & _ "$cdad-light: lighten($cdad-base, 60%) !default; //" & @CRLF & _ "$cdad-lighter: lighten($cdad-base, 80%) !default; //" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//== Scaffolding" & @CRLF & _ "//" & @CRLF & _ "//## Settings for some of the most global styles." & @CRLF & _ "" & @CRLF & _ "//** Background color for `<body>`." & @CRLF & _ "$body-bg: #fff !default;" & @CRLF & _ "//** Global text color on `<body>`." & @CRLF & _ "$text-color: $gray-dark !default;" & @CRLF & _ "" & @CRLF & _ "//** Global textual link color." & @CRLF & _ "$link-color: $brand-primary !default;" & @CRLF & _ "//** Link hover color set via `darken()` function." & @CRLF & _ "$link-hover-color: darken($link-color, 15%) !default;" & @CRLF & _ "//** Link hover decoration." & @CRLF & _ "$link-hover-decoration: underline !default;" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//== Typography" & @CRLF & _ "//" & @CRLF & _ "//## Font, line-height, and color for body text, headings, and more." & @CRLF & _ "" & @CRLF & _ "$font-family-sans-serif: "Source Sans Pro", Calibri, Candara, Arial, sans-serif !default;" & @CRLF & _ "$font-family-serif: Georgia, "Times New Roman", Times, serif !default;" & @CRLF & _ "//** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`." & @CRLF & _ "$font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace !default;" & @CRLF & _ "$font-family-base: $font-family-sans-serif !default;" & @CRLF & _ "" & @CRLF & _ "$font-size-base: 15px !default;" & @CRLF & _ "$font-size-large: ceil(($font-size-base * 1.25)) !default; // ~18px" & @CRLF & _ "$font-size-small: ceil(($font-size-base * 0.85)) !default; // ~12px" & @CRLF & _ "$font-size-xl: floor(($font-size-base * 3.13)) !default; // ~50px" & @CRLF & _ "" & @CRLF & _ "$font-size-h1: floor(($font-size-base * 2.6)) !default; // ~36px" & @CRLF & _ "$font-size-h2: floor(($font-size-base * 2.15)) !default; // ~30px" & @CRLF & _ "$font-size-h3: ceil(($font-size-base * 1.7)) !default; // ~24px" & @CRLF & _ "$font-size-h4: ceil(($font-size-base * 1.25)) !default; // ~18px" & @CRLF & _ "$font-size-h5: $font-size-base !default;" & @CRLF & _ "$font-size-h6: ceil(($font-size-base * 0.85)) !default; // ~12px" & @CRLF & _ "" & @CRLF & _ "//** Unit-less `line-height` for use in components like buttons." & @CRLF & _ "$line-height-base: 1.428571429 !default; // 20/14" & @CRLF & _ "//** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc." & @CRLF & _ "$line-height-computed: floor(($font-size-base * $line-height-base)) !default; // ~20px" & @CRLF & _ "" & @CRLF & _ "//** By default, this inherits from the `<body>`." & @CRLF & _ "$headings-font-family: $font-family-base !default;" & @CRLF & _ "$headings-font-weight: 300 !default;" & @CRLF & _ "$headings-line-height: 1.1 !default;" & @CRLF & _ "$headings-color: inherit !default;" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//== Iconography" & @CRLF & _ "//" & @CRLF & _ "//## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower." & @CRLF & _ "" & @CRLF & _ "//** Load fonts from this directory." & @CRLF & _ "$icon-font-path: if($bootstrap-sass-asset-helper, "bootstrap/", "../fonts/bootstrap/") !default;" & @CRLF & _ "//** File name for all font files." & @CRLF & _ "$icon-font-name: "glyphicons-halflings-regular" !default;" & @CRLF & _ "//** Element ID within SVG icon file." & @CRLF & _ "$icon-font-svg-id: "glyphicons_halflingsregular" !default;" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//== Components" & @CRLF & _ "//" & @CRLF & _ "//## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start)." & @CRLF & _ "" & @CRLF & _ "$padding-base-vertical: 10px !default;" & @CRLF & _ "$padding-base-horizontal: 18px !default;" & @CRLF & _ "" & @CRLF & _ "$padding-large-vertical: 18px !default;" & @CRLF & _ "$padding-large-horizontal: 30px !default;" & @CRLF & _ "" & @CRLF & _ "$padding-small-vertical: 5px !default;" & @CRLF & _ "$padding-small-horizontal: 10px !default;" & @CRLF & _ "" & @CRLF & _ "$padding-xs-vertical: 1px !default;" & @CRLF & _ "$padding-xs-horizontal: 5px !default;" & @CRLF & _ "" & @CRLF & _ "$line-height-large: 1.3333333 !default; // extra decimals for Win 8.1 Chrome" & @CRLF & _ "$line-height-small: 1.5 !default;" & @CRLF & _ "" & @CRLF & _ "$border-radius-base: 0 !default;" & @CRLF & _ "$border-radius-large: 0 !default;" & @CRLF & _ "$border-radius-small: 0 !default;" & @CRLF & _ "" & @CRLF & _ "//** Global color for active items (e.g., navs or dropdowns)." & @CRLF & _ "$component-active-color: #fff !default;" & @CRLF & _ "//** Global background color for active items (e.g., navs or dropdowns)." & @CRLF & _ "$component-active-bg: $brand-primary !default;" & @CRLF & _ "" & @CRLF & _ "//** Width of the `border` for generating carets that indicator dropdowns." & @CRLF & _ "$caret-width-base: 4px !default;" & @CRLF & _ "//** Carets increase slightly in size for larger components." & @CRLF & _ "$caret-width-large: 5px !default;" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//== Tables" & @CRLF & _ "//" & @CRLF & _ "//## Customizes the `.table` component with basic values, each used across all table variations." & @CRLF & _ "" & @CRLF & _ "//** Padding for `<th>`s and `<td>`s." & @CRLF & _ "$table-cell-padding: 8px !default;" & @CRLF & _ "//** Padding for cells in `.table-condensed`." & @CRLF & _ "$table-condensed-cell-padding: 5px !default;" & @CRLF & _ "" & @CRLF & _ "//** Default background color used for all tables." & @CRLF & _ "$table-bg: transparent !default;" & @CRLF & _ "//** Background color used for `.table-striped`." & @CRLF & _ "$table-bg-accent: #f9f9f9 !default;" & @CRLF & _ "//** Background color used for `.table-hover`." & @CRLF & _ "$table-bg-hover: #f5f5f5 !default;" & @CRLF & _ "$table-bg-active: $table-bg-hover !default;" & @CRLF & _ "" & @CRLF & _ "//** Border color for table and cell borders." & @CRLF & _ "$table-border-color: #ddd !default;" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//== Buttons" & @CRLF & _ "//" & @CRLF & _ "//## For each of Bootstrap's buttons, define text, background and border color." & @CRLF & _ "" & @CRLF & _ "$btn-font-weight: normal !default;" & @CRLF & _ "" & @CRLF & _ "$btn-default-color: #fff !default;" & @CRLF & _ "$btn-default-bg: $gray-darker !default;" & @CRLF & _ "$btn-default-border: $btn-default-bg !default;" & @CRLF & _ "" & @CRLF & _ "$btn-primary-color: $btn-default-color !default;" & @CRLF & _ "$btn-primary-bg: $brand-primary !default;" & @CRLF & _ "$btn-primary-border: $btn-primary-bg !default;" & @CRLF & _ "" & @CRLF & _ "$btn-success-color: $btn-default-color !default;" & @CRLF & _ "$btn-success-bg: $brand-success !default;" & @CRLF & _ "$btn-success-border: $btn-success-bg !default;" & @CRLF & _ "" & @CRLF & _ "$btn-info-color: $btn-default-color !default;" & @CRLF & _ "$btn-info-bg: $brand-info !default;" & @CRLF & _ "$btn-info-border: $btn-info-bg !default;" & @CRLF & _ "" & @CRLF & _ "$btn-warning-color: $btn-default-color !default;" & @CRLF & _ "$btn-warning-bg: $brand-warning !default;" & @CRLF & _ "$btn-warning-border: $btn-warning-bg !default;" & @CRLF & _ "" & @CRLF & _ "$btn-danger-color: $btn-default-color !default;" & @CRLF & _ "$btn-danger-bg: $brand-danger !default;" & @CRLF & _ "$btn-danger-border: $btn-danger-bg !default;" & @CRLF & _ "" & @CRLF & _ "$btn-link-disabled-color: $gray-light !default;" & @CRLF & _ "" & @CRLF & _ "// Allows for customizing button radius independently from global border radius" & @CRLF & _ "$btn-border-radius-base: $border-radius-base !default;" & @CRLF & _ "$btn-border-radius-large: $border-radius-large !default;" & @CRLF & _ "$btn-border-radius-small: $border-radius-small !default;" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//== Forms" & @CRLF & _ "//" & @CRLF & _ "//##" & @CRLF & _ "" & @CRLF & _ "//** `<input>` background color" & @CRLF & _ "$input-bg: #fff !default;" & @CRLF & _ "//** `<input disabled>` background color" & @CRLF & _ "$input-bg-disabled: $gray-lighter !default;" & @CRLF & _ "" & @CRLF & _ "//** Text color for `<input>`s" & @CRLF & _ "$input-color: $text-color !default;" & @CRLF & _ "//** `<input>` border color" & @CRLF & _ "$input-border: #ccc !default;" & @CRLF & _ "" & @CRLF & _ "// TODO: Rename `$input-border-radius` to `$input-border-radius-base` in v4" & @CRLF & _ "//** Default `.form-control` border radius" & @CRLF & _ "// This has no effect on `<select>`s in some browsers, due to the limited stylability of `<select>`s in CSS." & @CRLF & _ "$input-border-radius: $border-radius-base !default;" & @CRLF & _ "//** Large `.form-control` border radius" & @CRLF & _ "$input-border-radius-large: $border-radius-large !default;" & @CRLF & _ "//** Small `.form-control` border radius" & @CRLF & _ "$input-border-radius-small: $border-radius-small !default;" & @CRLF & _ "" & @CRLF & _ "//** Border color for inputs on focus" & @CRLF & _ "$input-border-focus: #66afe9 !default;" & @CRLF & _ "" & @CRLF & _ "//** Placeholder text color" & @CRLF & _ "$input-color-placeholder: $gray-light !default;" & @CRLF & _ "" & @CRLF & _ "//** Default `.form-control` height" & @CRLF & _ "$input-height-base: ($line-height-computed + ($padding-base-vertical * 2) + 2) !default;" & @CRLF & _ "//** Large `.form-control` height" & @CRLF & _ "$input-height-large: (ceil($font-size-large * $line-height-large) + ($padding-large-vertical * 2) + 2) !default;" & @CRLF & _ "//** Small `.form-control` height" & @CRLF & _ "$input-height-small: (floor($font-size-small * $line-height-small) + ($padding-small-vertical * 2) + 2) !default;" & @CRLF & _ "" & @CRLF & _ "//** `.form-group` margin" & @CRLF & _ "$form-group-margin-bottom: 15px !default;" & @CRLF & _ "" & @CRLF & _ "$legend-color: $text-color !default;" & @CRLF & _ "$legend-border-color: #e5e5e5 !default;" & @CRLF & _ "" & @CRLF & _ "//** Background color for textual input addons" & @CRLF & _ "$input-group-addon-bg: $gray-lighter !default;" & @CRLF & _ "//** Border color for textual input addons" & @CRLF & _ "$input-group-addon-border-color: $input-border !default;" & @CRLF & _ "" & @CRLF & _ "//** Disabled cursor for form controls and buttons." & @CRLF & _ "$cursor-disabled: not-allowed !default;" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//== Dropdowns" & @CRLF & _ "//" & @CRLF & _ "//## Dropdown menu container and contents." & @CRLF & _ "" & @CRLF & _ "//** Background for the dropdown menu." & @CRLF & _ "$dropdown-bg: #fff !default;" & @CRLF & _ "//** Dropdown menu `border-color`." & @CRLF & _ "$dropdown-border: rgba(0,0,0,.15) !default;" & @CRLF & _ "//** Dropdown menu `border-color` **for IE8**." & @CRLF & _ "$dropdown-fallback-border: #ccc !default;" & @CRLF & _ "//** Divider color for between dropdown items." & @CRLF & _ "$dropdown-divider-bg: #e5e5e5 !default;" & @CRLF & _ "" & @CRLF & _ "//** Dropdown link text color." & @CRLF & _ "$dropdown-link-color: $gray-dark !default;" & @CRLF & _ "//** Hover color for dropdown links." & @CRLF & _ "$dropdown-link-hover-color: #fff !default;" & @CRLF & _ "//** Hover background for dropdown links." & @CRLF & _ "$dropdown-link-hover-bg: $component-active-bg !default;" & @CRLF & _ "" & @CRLF & _ "//** Active dropdown menu item text color." & @CRLF & _ "$dropdown-link-active-color: #fff !default;" & @CRLF & _ "//** Active dropdown menu item background color." & @CRLF & _ "$dropdown-link-active-bg: $component-active-bg !default;" & @CRLF & _ "" & @CRLF & _ "//** Disabled dropdown menu item background color." & @CRLF & _ "$dropdown-link-disabled-color: $gray-light !default;" & @CRLF & _ "" & @CRLF & _ "//** Text color for headers within dropdown menus." & @CRLF & _ "$dropdown-header-color: $gray-light !default;" & @CRLF & _ "" & @CRLF & _ "//** Deprecated `$dropdown-caret-color` as of v3.1.0" & @CRLF & _ "$dropdown-caret-color: #000 !default;" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//-- Z-index master list" & @CRLF & _ "//" & @CRLF & _ "// Warning: Avoid customizing these values. They're used for a bird's eye view" & @CRLF & _ "// of components dependent on the z-axis and are designed to all work together." & @CRLF & _ "//" & @CRLF & _ "// Note: These variables are not generated into the Customizer." & @CRLF & _ "" & @CRLF & _ "$zindex-navbar: 1000 !default;" & @CRLF & _ "$zindex-dropdown: 1000 !default;" & @CRLF & _ "$zindex-popover: 1060 !default;" & @CRLF & _ "$zindex-tooltip: 1070 !default;" & @CRLF & _ "$zindex-navbar-fixed: 1030 !default;" & @CRLF & _ "$zindex-modal-background: 1040 !default;" & @CRLF & _ "$zindex-modal: 1050 !default;" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//== Media queries breakpoints" & @CRLF & _ "//" & @CRLF & _ "//## Define the breakpoints at which your layout will change, adapting to different screen sizes." & @CRLF & _ "" & @CRLF & _ "// Extra small screen / phone" & @CRLF & _ "//** Deprecated `$screen-xs` as of v3.0.1" & @CRLF & _ "$screen-xs: 480px !default;" & @CRLF & _ "//** Deprecated `$screen-xs-min` as of v3.2.0" & @CRLF & _ "$screen-xs-min: $screen-xs !default;" & @CRLF & _ "//** Deprecated `$screen-phone` as of v3.0.1" & @CRLF & _ "$screen-phone: $screen-xs-min !default;" & @CRLF & _ "" & @CRLF & _ "// Small screen / tablet" & @CRLF & _ "//** Deprecated `$screen-sm` as of v3.0.1" & @CRLF & _ "$screen-sm: 768px !default;" & @CRLF & _ "$screen-sm-min: $screen-sm !default;" & @CRLF & _ "//** Deprecated `$screen-tablet` as of v3.0.1" & @CRLF & _ "$screen-tablet: $screen-sm-min !default;" & @CRLF & _ "" & @CRLF & _ "// Medium screen / desktop" & @CRLF & _ "//** Deprecated `$screen-md` as of v3.0.1" & @CRLF & _ "$screen-md: 992px !default;" & @CRLF & _ "$screen-md-min: $screen-md !default;" & @CRLF & _ "//** Deprecated `$screen-desktop` as of v3.0.1" & @CRLF & _ "$screen-desktop: $screen-md-min !default;" & @CRLF & _ "" & @CRLF & _ "// Large screen / wide desktop" & @CRLF & _ "//** Deprecated `$screen-lg` as of v3.0.1" & @CRLF & _ "$screen-lg: 1200px !default;" & @CRLF & _ "$screen-lg-min: $screen-lg !default;" & @CRLF & _ "//** Deprecated `$screen-lg-desktop` as of v3.0.1" & @CRLF & _ "$screen-lg-desktop: $screen-lg-min !default;" & @CRLF & _ "" & @CRLF & _ "// So media queries don't overlap when required, provide a maximum" & @CRLF & _ "$screen-xs-max: ($screen-sm-min - 1) !default;" & @CRLF & _ "$screen-sm-max: ($screen-md-min - 1) !default;" & @CRLF & _ "$screen-md-max: ($screen-lg-min - 1) !default;" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//== Grid system" & @CRLF & _ "//" & @CRLF & _ "//## Define your custom responsive grid." & @CRLF & _ "" & @CRLF & _ "//** Number of columns in the grid." & @CRLF & _ "$grid-columns: 12 !default;" & @CRLF & _ "//** Padding between columns. Gets divided in half for the left and right." & @CRLF & _ "$grid-gutter-width: 30px !default;" & @CRLF & _ "// Navbar collapse" & @CRLF & _ "//** Point at which the navbar becomes uncollapsed." & @CRLF & _ "$grid-float-breakpoint: $screen-sm-min !default;" & @CRLF & _ "//** Point at which the navbar begins collapsing." & @CRLF & _ "$grid-float-breakpoint-max: ($grid-float-breakpoint - 1) !default;" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//== Container sizes" & @CRLF & _ "//" & @CRLF & _ "//## Define the maximum width of `.container` for different screen sizes." & @CRLF & _ "" & @CRLF & _ "// Small screen / tablet" & @CRLF & _ "$container-tablet: (720px + $grid-gutter-width) !default;" & @CRLF & _ "//** For `$screen-sm-min` and up." & @CRLF & _ "$container-sm: $container-tablet !default;" & @CRLF & _ "" & @CRLF & _ "// Medium screen / desktop" & @CRLF & _ "$container-desktop: (940px + $grid-gutter-width) !default;" & @CRLF & _ "//** For `$screen-md-min` and up." & @CRLF & _ "$container-md: $container-desktop !default;" & @CRLF & _ "" & @CRLF & _ "// Large screen / wide desktop" & @CRLF & _ "$container-large-desktop: (1140px + $grid-gutter-width) !default;" & @CRLF & _ "//** For `$screen-lg-min` and up." & @CRLF & _ "$container-lg: $container-large-desktop !default;" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//== Navbar" & @CRLF & _ "//" & @CRLF & _ "//##" & @CRLF & _ "" & @CRLF & _ "// Basics of a navbar" & @CRLF & _ "$navbar-height: 50px !default;" & @CRLF & _ "$navbar-margin-bottom: $line-height-computed !default;" & @CRLF & _ "$navbar-border-radius: $border-radius-base !default;" & @CRLF & _ "$navbar-padding-horizontal: floor(($grid-gutter-width / 2)) !default;" & @CRLF & _ "$navbar-padding-vertical: (($navbar-height - $line-height-computed) / 2) !default;" & @CRLF & _ "$navbar-collapse-max-height: 340px !default;" & @CRLF & _ "" & @CRLF & _ "$navbar-default-color: #fff !default;" & @CRLF & _ "$navbar-default-bg: $gray-darker !default;" & @CRLF & _ "$navbar-default-border: darken($navbar-default-bg, 6.5%) !default;" & @CRLF & _ "" & @CRLF & _ "// Navbar links" & @CRLF & _ "$navbar-default-link-color: #fff !default;" & @CRLF & _ "$navbar-default-link-hover-color: #fff !default;" & @CRLF & _ "$navbar-default-link-hover-bg: darken($navbar-default-bg, 10%) !default;" & @CRLF & _ "$navbar-default-link-active-color: $navbar-default-link-hover-color !default;" & @CRLF & _ "$navbar-default-link-active-bg: $navbar-default-link-hover-bg !default;" & @CRLF & _ "$navbar-default-link-disabled-color: #ccc !default;" & @CRLF & _ "$navbar-default-link-disabled-bg: transparent !default;" & @CRLF & _ "" & @CRLF & _ "// Navbar brand label" & @CRLF & _ "$navbar-default-brand-color: $navbar-default-link-color !default;" & @CRLF & _ "$navbar-default-brand-hover-color: #fff !default;" & @CRLF & _ "$navbar-default-brand-hover-bg: none !default;" & @CRLF & _ "" & @CRLF & _ "// Navbar toggle" & @CRLF & _ "$navbar-default-toggle-hover-bg: $navbar-default-link-hover-bg !default;" & @CRLF & _ "$navbar-default-toggle-icon-bar-bg: #fff !default;" & @CRLF & _ "$navbar-default-toggle-border-color: transparent !default;" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//=== Inverted navbar" & @CRLF & _ "// Reset inverted navbar basics" & @CRLF & _ "$navbar-inverse-color: #fff !default;" & @CRLF & _ "$navbar-inverse-bg: $brand-primary !default;" & @CRLF & _ "$navbar-inverse-border: darken($navbar-inverse-bg, 10%) !default;" & @CRLF & _ "" & @CRLF & _ "// Inverted navbar links" & @CRLF & _ "$navbar-inverse-link-color: #fff !default;" & @CRLF & _ "$navbar-inverse-link-hover-color: #fff !default;" & @CRLF & _ "$navbar-inverse-link-hover-bg: darken($navbar-inverse-bg, 10%) !default;" & @CRLF & _ "$navbar-inverse-link-active-color: $navbar-inverse-link-hover-color !default;" & @CRLF & _ "$navbar-inverse-link-active-bg: $navbar-inverse-link-hover-bg !default;" & @CRLF & _ "$navbar-inverse-link-disabled-color: #fff !default;" & @CRLF & _ "$navbar-inverse-link-disabled-bg: transparent !default;" & @CRLF & _ "" & @CRLF & _ "// Inverted navbar brand label" & @CRLF & _ "$navbar-inverse-brand-color: $navbar-inverse-link-color !default;" & @CRLF & _ "$navbar-inverse-brand-hover-color: #fff !default;" & @CRLF & _ "$navbar-inverse-brand-hover-bg: none !default;" & @CRLF & _ "" & @CRLF & _ "// Inverted navbar toggle" & @CRLF & _ "$navbar-inverse-toggle-hover-bg: $navbar-inverse-link-hover-bg !default;" & @CRLF & _ "$navbar-inverse-toggle-icon-bar-bg: #fff !default;" & @CRLF & _ "$navbar-inverse-toggle-border-color: transparent !default;" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//== Navs" & @CRLF & _ "//" & @CRLF & _ "//##" & @CRLF & _ "" & @CRLF & _ "//=== Shared nav styles" & @CRLF & _ "$nav-link-padding: 10px 15px !default;" & @CRLF & _ "$nav-link-hover-bg: $gray-lighter !default;" & @CRLF & _ "" & @CRLF & _ "$nav-disabled-link-color: $gray-light !default;" & @CRLF & _ "$nav-disabled-link-hover-color: $gray-light !default;" & @CRLF & _ "" & @CRLF & _ "//== Tabs" & @CRLF & _ "$nav-tabs-border-color: #ddd !default;" & @CRLF & _ "" & @CRLF & _ "$nav-tabs-link-hover-border-color: $gray-lighter !default;" & @CRLF & _ "" & @CRLF & _ "$nav-tabs-active-link-hover-bg: $body-bg !default;" & @CRLF & _ "$nav-tabs-active-link-hover-color: $gray !default;" & @CRLF & _ "$nav-tabs-active-link-hover-border-color: #ddd !default;" & @CRLF & _ "" & @CRLF & _ "$nav-tabs-justified-link-border-color: #ddd !default;" & @CRLF & _ "$nav-tabs-justified-active-link-border-color: $body-bg !default;" & @CRLF & _ "" & @CRLF & _ "//== Pills" & @CRLF & _ "$nav-pills-border-radius: $border-radius-base !default;" & @CRLF & _ "$nav-pills-active-link-hover-bg: $component-active-bg !default;" & @CRLF & _ "$nav-pills-active-link-hover-color: $component-active-color !default;" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//== Pagination" & @CRLF & _ "//" & @CRLF & _ "//##" & @CRLF & _ "" & @CRLF & _ "$pagination-color: $link-color !default;" & @CRLF & _ "$pagination-bg: #fff !default;" & @CRLF & _ "$pagination-border: #ddd !default;" & @CRLF & _ "" & @CRLF & _ "$pagination-hover-color: $link-hover-color !default;" & @CRLF & _ "$pagination-hover-bg: $gray-lighter !default;" & @CRLF & _ "$pagination-hover-border: #ddd !default;" & @CRLF & _ "" & @CRLF & _ "$pagination-active-color: $gray-light !default;" & @CRLF & _ "$pagination-active-bg: #f5f5f5 !default;" & @CRLF & _ "$pagination-active-border: #ddd !default;" & @CRLF & _ "" & @CRLF & _ "$pagination-disabled-color: $gray-light !default;" & @CRLF & _ "$pagination-disabled-bg: #fff !default;" & @CRLF & _ "$pagination-disabled-border: #ddd !default;" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//== Pager" & @CRLF & _ "//" & @CRLF & _ "//##" & @CRLF & _ "" & @CRLF & _ "$pager-bg: $pagination-bg !default;" & @CRLF & _ "$pager-border: $pagination-border !default;" & @CRLF & _ "$pager-border-radius: $border-radius-base !default;" & @CRLF & _ "" & @CRLF & _ "$pager-hover-bg: $pagination-hover-bg !default;" & @CRLF & _ "" & @CRLF & _ "$pager-active-bg: $pagination-active-bg !default;" & @CRLF & _ "$pager-active-color: $pagination-active-color !default;" & @CRLF & _ "" & @CRLF & _ "$pager-disabled-color: $gray-light !default;" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//== Jumbotron" & @CRLF & _ "//" & @CRLF & _ "//##" & @CRLF & _ "" & @CRLF & _ "$jumbotron-padding: 30px !default;" & @CRLF & _ "$jumbotron-color: inherit !default;" & @CRLF & _ "$jumbotron-bg: $gray-lighter !default;" & @CRLF & _ "$jumbotron-heading-color: inherit !default;" & @CRLF & _ "$jumbotron-font-size: ceil(($font-size-base * 1.5)) !default;" & @CRLF & _ "$jumbotron-heading-font-size: ceil(($font-size-base * 4.5)) !default;" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//== Form states and alerts" & @CRLF & _ "//" & @CRLF & _ "//## Define colors for form feedback states and, by default, alerts." & @CRLF & _ "" & @CRLF & _ "$state-success-text: #fff !default;" & @CRLF & _ "$state-success-bg: $brand-success !default;" & @CRLF & _ "$state-success-border: darken(adjust-hue($state-success-bg, -10), 5%) !default;" & @CRLF & _ "" & @CRLF & _ "$state-info-text: #fff !default;" & @CRLF & _ "$state-info-bg: $brand-info !default;" & @CRLF & _ "$state-info-border: darken(adjust-hue($state-info-bg, -10), 7%) !default;" & @CRLF & _ "" & @CRLF & _ "$state-warning-text: #fff !default;" & @CRLF & _ "$state-warning-bg: $brand-warning !default;" & @CRLF & _ "$state-warning-border: darken(adjust-hue($state-warning-bg, -10), 3%) !default;" & @CRLF & _ "" & @CRLF & _ "$state-danger-text: #fff !default;" & @CRLF & _ "$state-danger-bg: $brand-danger !default;" & @CRLF & _ "$state-danger-border: darken(adjust-hue($state-danger-bg, -10), 3%) !default;" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//== Tooltips" & @CRLF & _ "//" & @CRLF & _ "//##" & @CRLF & _ "" & @CRLF & _ "//** Tooltip max width" & @CRLF & _ "$tooltip-max-width: 200px !default;" & @CRLF & _ "//** Tooltip text color" & @CRLF & _ "$tooltip-color: #fff !default;" & @CRLF & _ "//** Tooltip background color" & @CRLF & _ "$tooltip-bg: #000 !default;" & @CRLF & _ "$tooltip-opacity: .9 !default;" & @CRLF & _ "" & @CRLF & _ "//** Tooltip arrow width" & @CRLF & _ "$tooltip-arrow-width: 5px !default;" & @CRLF & _ "//** Tooltip arrow color" & @CRLF & _ "$tooltip-arrow-color: $tooltip-bg !default;" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//== Popovers" & @CRLF & _ "//" & @CRLF & _ "//##" & @CRLF & _ "" & @CRLF & _ "//** Popover body background color" & @CRLF & _ "$popover-bg: #fff !default;" & @CRLF & _ "//** Popover maximum width" & @CRLF & _ "$popover-max-width: 276px !default;" & @CRLF & _ "//** Popover border color" & @CRLF & _ "$popover-border-color: rgba(0,0,0,.2) !default;" & @CRLF & _ "//** Popover fallback border color" & @CRLF & _ "$popover-fallback-border-color: #ccc !default;" & @CRLF & _ "" & @CRLF & _ "//** Popover title background color" & @CRLF & _ "$popover-title-bg: darken($popover-bg, 3%) !default;" & @CRLF & _ "" & @CRLF & _ "//** Popover arrow width" & @CRLF & _ "$popover-arrow-width: 10px !default;" & @CRLF & _ "//** Popover arrow color" & @CRLF & _ "$popover-arrow-color: $popover-bg !default;" & @CRLF & _ "" & @CRLF & _ "//** Popover outer arrow width" & @CRLF & _ "$popover-arrow-outer-width: ($popover-arrow-width + 1) !default;" & @CRLF & _ "//** Popover outer arrow color" & @CRLF & _ "$popover-arrow-outer-color: fadein($popover-border-color, 5%) !default;" & @CRLF & _ "//** Popover outer arrow fallback color" & @CRLF & _ "$popover-arrow-outer-fallback-color: darken($popover-fallback-border-color, 20%) !default;" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//== Labels" & @CRLF & _ "//" & @CRLF & _ "//##" & @CRLF & _ "" & @CRLF & _ "//** Default label background color" & @CRLF & _ "$label-default-bg: $btn-default-bg !default;" & @CRLF & _ "//** Primary label background color" & @CRLF & _ "$label-primary-bg: $brand-primary !default;" & @CRLF & _ "//** Success label background color" & @CRLF & _ "$label-success-bg: $brand-success !default;" & @CRLF & _ "//** Info label background color" & @CRLF & _ "$label-info-bg: $brand-info !default;" & @CRLF & _ "//** Warning label background color" & @CRLF & _ "$label-warning-bg: $brand-warning !default;" & @CRLF & _ "//** Danger label background color" & @CRLF & _ "$label-danger-bg: $brand-danger !default;" & @CRLF & _ "" & @CRLF & _ "//** Default label text color" & @CRLF & _ "$label-color: #fff !default;" & @CRLF & _ "//** Default text color of a linked label" & @CRLF & _ "$label-link-hover-color: #fff !default;" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//== Modals" & @CRLF & _ "//" & @CRLF & _ "//##" & @CRLF & _ "" & @CRLF & _ "//** Padding applied to the modal body" & @CRLF & _ "$modal-inner-padding: 20px !default;" & @CRLF & _ "" & @CRLF & _ "//** Padding applied to the modal title" & @CRLF & _ "$modal-title-padding: 15px !default;" & @CRLF & _ "//** Modal title line-height" & @CRLF & _ "$modal-title-line-height: $line-height-base !default;" & @CRLF & _ "" & @CRLF & _ "//** Background color of modal content area" & @CRLF & _ "$modal-content-bg: #fff !default;" & @CRLF & _ "//** Modal content border color" & @CRLF & _ "$modal-content-border-color: transparent !default;" & @CRLF & _ "//** Modal content border color **for IE8**" & @CRLF & _ "$modal-content-fallback-border-color: #999 !default;" & @CRLF & _ "" & @CRLF & _ "//** Modal backdrop background color" & @CRLF & _ "$modal-backdrop-bg: #000 !default;" & @CRLF & _ "//** Modal backdrop opacity" & @CRLF & _ "$modal-backdrop-opacity: .5 !default;" & @CRLF & _ "//** Modal header border color" & @CRLF & _ "$modal-header-border-color: #e5e5e5 !default;" & @CRLF & _ "//** Modal footer border color" & @CRLF & _ "$modal-footer-border-color: $modal-header-border-color !default;" & @CRLF & _ "" & @CRLF & _ "$modal-lg: 900px !default;" & @CRLF & _ "$modal-md: 600px !default;" & @CRLF & _ "$modal-sm: 300px !default;" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//== Alerts" & @CRLF & _ "//" & @CRLF & _ "//## Define alert colors, border radius, and padding." & @CRLF & _ "" & @CRLF & _ "$alert-padding: 15px !default;" & @CRLF & _ "$alert-border-radius: $border-radius-base !default;" & @CRLF & _ "$alert-link-font-weight: bold !default;" & @CRLF & _ "" & @CRLF & _ "$alert-success-bg: $state-success-bg !default;" & @CRLF & _ "$alert-success-text: $state-success-text !default;" & @CRLF & _ "$alert-success-border: $state-success-border !default;" & @CRLF & _ "" & @CRLF & _ "$alert-info-bg: $state-info-bg !default;" & @CRLF & _ "$alert-info-text: $state-info-text !default;" & @CRLF & _ "$alert-info-border: $state-info-border !default;" & @CRLF & _ "" & @CRLF & _ "$alert-warning-bg: $state-warning-bg !default;" & @CRLF & _ "$alert-warning-text: $state-warning-text !default;" & @CRLF & _ "$alert-warning-border: $state-warning-border !default;" & @CRLF & _ "" & @CRLF & _ "$alert-danger-bg: $state-danger-bg !default;" & @CRLF & _ "$alert-danger-text: $state-danger-text !default;" & @CRLF & _ "$alert-danger-border: $state-danger-border !default;" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//== Progress bars" & @CRLF & _ "//" & @CRLF & _ "//##" & @CRLF & _ "" & @CRLF & _ "//** Background color of the whole progress component" & @CRLF & _ "$progress-bg: #ccc !default;" & @CRLF & _ "//** Progress bar text color" & @CRLF & _ "$progress-bar-color: #fff !default;" & @CRLF & _ "//** Variable for setting rounded corners on progress bar." & @CRLF & _ "$progress-border-radius: $border-radius-base !default;" & @CRLF & _ "" & @CRLF & _ "//** Default progress bar color" & @CRLF & _ "$progress-bar-bg: $brand-primary !default;" & @CRLF & _ "//** Success progress bar color" & @CRLF & _ "$progress-bar-success-bg: $brand-success !default;" & @CRLF & _ "//** Warning progress bar color" & @CRLF & _ "$progress-bar-warning-bg: $brand-warning !default;" & @CRLF & _ "//** Danger progress bar color" & @CRLF & _ "$progress-bar-danger-bg: $brand-danger !default;" & @CRLF & _ "//** Info progress bar color" & @CRLF & _ "$progress-bar-info-bg: $brand-info !default;" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//== List group" & @CRLF & _ "//" & @CRLF & _ "//##" & @CRLF & _ "" & @CRLF & _ "//** Background color on `.list-group-item`" & @CRLF & _ "$list-group-bg: #fff !default;" & @CRLF & _ "//** `.list-group-item` border color" & @CRLF & _ "$list-group-border: #ddd !default;" & @CRLF & _ "//** List group border radius" & @CRLF & _ "$list-group-border-radius: $border-radius-base !default;" & @CRLF & _ "" & @CRLF & _ "//** Background color of single list items on hover" & @CRLF & _ "$list-group-hover-bg: #f5f5f5 !default;" & @CRLF & _ "//** Text color of active list items" & @CRLF & _ "$list-group-active-color: $component-active-color !default;" & @CRLF & _ "//** Background color of active list items" & @CRLF & _ "$list-group-active-bg: $component-active-bg !default;" & @CRLF & _ "//** Border color of active list elements" & @CRLF & _ "$list-group-active-border: $list-group-border !default;" & @CRLF & _ "//** Text color for content within active list items" & @CRLF & _ "$list-group-active-text-color: lighten($list-group-active-bg, 40%) !default;" & @CRLF & _ "" & @CRLF & _ "//** Text color of disabled list items" & @CRLF & _ "$list-group-disabled-color: $gray-light !default;" & @CRLF & _ "//** Background color of disabled list items" & @CRLF & _ "$list-group-disabled-bg: $gray-lighter !default;" & @CRLF & _ "//** Text color for content within disabled list items" & @CRLF & _ "$list-group-disabled-text-color: $list-group-disabled-color !default;" & @CRLF & _ "" & @CRLF & _ "$list-group-link-color: #555 !default;" & @CRLF & _ "$list-group-link-hover-color: $list-group-link-color !default;" & @CRLF & _ "$list-group-link-heading-color: #333 !default;" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//== Panels" & @CRLF & _ "//" & @CRLF & _ "//##" & @CRLF & _ "" & @CRLF & _ "$panel-bg: #fff !default;" & @CRLF & _ "$panel-body-padding: 15px !default;" & @CRLF & _ "$panel-heading-padding: 10px 15px !default;" & @CRLF & _ "$panel-footer-padding: $panel-heading-padding !default;" & @CRLF & _ "$panel-border-radius: $border-radius-base !default;" & @CRLF & _ "" & @CRLF & _ "//** Border color for elements within panels" & @CRLF & _ "$panel-inner-border: #ddd !default;" & @CRLF & _ "$panel-footer-bg: #f5f5f5 !default;" & @CRLF & _ "" & @CRLF & _ "$panel-default-text: $gray-dark !default;" & @CRLF & _ "$panel-default-border: #ddd !default;" & @CRLF & _ "$panel-default-heading-bg: #f5f5f5 !default;" & @CRLF & _ "" & @CRLF & _ "$panel-primary-text: #fff !default;" & @CRLF & _ "$panel-primary-border: $brand-primary !default;" & @CRLF & _ "$panel-primary-heading-bg: $brand-primary !default;" & @CRLF & _ "" & @CRLF & _ "$panel-success-text: $state-success-text !default;" & @CRLF & _ "$panel-success-border: $state-success-border !default;" & @CRLF & _ "$panel-success-heading-bg: $state-success-bg !default;" & @CRLF & _ "" & @CRLF & _ "$panel-info-text: $state-info-text !default;" & @CRLF & _ "$panel-info-border: $state-info-border !default;" & @CRLF & _ "$panel-info-heading-bg: $state-info-bg !default;" & @CRLF & _ "" & @CRLF & _ "$panel-warning-text: $state-warning-text !default;" & @CRLF & _ "$panel-warning-border: $state-warning-border !default;" & @CRLF & _ "$panel-warning-heading-bg: $state-warning-bg !default;" & @CRLF & _ "" & @CRLF & _ "$panel-danger-text: $state-danger-text !default;" & @CRLF & _ "$panel-danger-border: $state-danger-border !default;" & @CRLF & _ "$panel-danger-heading-bg: $state-danger-bg !default;" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//== Thumbnails" & @CRLF & _ "//" & @CRLF & _ "//##" & @CRLF & _ "" & @CRLF & _ "//** Padding around the thumbnail image" & @CRLF & _ "$thumbnail-padding: 4px !default;" & @CRLF & _ "//** Thumbnail background color" & @CRLF & _ "$thumbnail-bg: $body-bg !default;" & @CRLF & _ "//** Thumbnail border color" & @CRLF & _ "$thumbnail-border: #ddd !default;" & @CRLF & _ "//** Thumbnail border radius" & @CRLF & _ "$thumbnail-border-radius: $border-radius-base !default;" & @CRLF & _ "" & @CRLF & _ "//** Custom text color for thumbnail captions" & @CRLF & _ "$thumbnail-caption-color: $text-color !default;" & @CRLF & _ "//** Padding around the thumbnail caption" & @CRLF & _ "$thumbnail-caption-padding: 9px !default;" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//== Wells" & @CRLF & _ "//" & @CRLF & _ "//##" & @CRLF & _ "$well-padding: 0px !default;" & @CRLF & _ "$well-bg: #f5f5f5 !default;" & @CRLF & _ "$well-border: darken($well-bg, 7%) !default;" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//== Badges" & @CRLF & _ "//" & @CRLF & _ "//##" & @CRLF & _ "" & @CRLF & _ "$badge-color: #fff !default;" & @CRLF & _ "//** Linked badge text color on hover" & @CRLF & _ "$badge-link-hover-color: #fff !default;" & @CRLF & _ "$badge-bg: $brand-primary !default;" & @CRLF & _ "" & @CRLF & _ "//** Badge text color in active nav link" & @CRLF & _ "$badge-active-color: $link-color !default;" & @CRLF & _ "//** Badge background color in active nav link" & @CRLF & _ "$badge-active-bg: #fff !default;" & @CRLF & _ "" & @CRLF & _ "$badge-font-weight: bold !default;" & @CRLF & _ "$badge-line-height: 1 !default;" & @CRLF & _ "$badge-border-radius: 10px !default;" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//== Breadcrumbs" & @CRLF & _ "//" & @CRLF & _ "//##" & @CRLF & _ "" & @CRLF & _ "$breadcrumb-padding-vertical: 8px !default;" & @CRLF & _ "$breadcrumb-padding-horizontal: 15px !default;" & @CRLF & _ "//** Breadcrumb background color" & @CRLF & _ "$breadcrumb-bg: #f5f5f5 !default;" & @CRLF & _ "//** Breadcrumb text color" & @CRLF & _ "$breadcrumb-color: #ccc !default;" & @CRLF & _ "//** Text color of current page in the breadcrumb" & @CRLF & _ "$breadcrumb-active-color: $gray-light !default;" & @CRLF & _ "//** Textual separator for between breadcrumb elements" & @CRLF & _ "$breadcrumb-separator: "/" !default;" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//== Carousel" & @CRLF & _ "//" & @CRLF & _ "//##" & @CRLF & _ "" & @CRLF & _ "$carousel-text-shadow: 0 1px 2px rgba(0,0,0,.6) !default;" & @CRLF & _ "" & @CRLF & _ "$carousel-control-color: #fff !default;" & @CRLF & _ "$carousel-control-width: 15% !default;" & @CRLF & _ "$carousel-control-opacity: .5 !default;" & @CRLF & _ "$carousel-control-font-size: 20px !default;" & @CRLF & _ "" & @CRLF & _ "$carousel-indicator-active-bg: #fff !default;" & @CRLF & _ "$carousel-indicator-border-color: #fff !default;" & @CRLF & _ "" & @CRLF & _ "$carousel-caption-color: #fff !default;" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//== Close" & @CRLF & _ "//" & @CRLF & _ "//##" & @CRLF & _ "" & @CRLF & _ "$close-font-weight: bold !default;" & @CRLF & _ "$close-color: #fff !default;" & @CRLF & _ "$close-text-shadow: 0 1px 0 #fff !default;" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//== Code" & @CRLF & _ "//" & @CRLF & _ "//##" & @CRLF & _ "" & @CRLF & _ "$code-color: #c7254e !default;" & @CRLF & _ "$code-bg: #f9f2f4 !default;" & @CRLF & _ "" & @CRLF & _ "$kbd-color: #fff !default;" & @CRLF & _ "$kbd-bg: #333 !default;" & @CRLF & _ "" & @CRLF & _ "$pre-bg: #f5f5f5 !default;" & @CRLF & _ "$pre-color: $gray-dark !default;" & @CRLF & _ "$pre-border-color: #ccc !default;" & @CRLF & _ "$pre-scrollable-max-height: 340px !default;" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "//== Type" & @CRLF & _ "//" & @CRLF & _ "//##" & @CRLF & _ "" & @CRLF & _ "//** Horizontal offset for forms and lists." & @CRLF & _ "$component-offset-horizontal: 180px !default;" & @CRLF & _ "//** Text muted color" & @CRLF & _ "$text-muted: $gray-light !default;" & @CRLF & _ "//** Abbreviations and acronyms border color" & @CRLF & _ "$abbr-border-color: $gray-light !default;" & @CRLF & _ "//** Headings small color" & @CRLF & _ "$headings-small-color: $gray-light !default;" & @CRLF & _ "//** Blockquote small color" & @CRLF & _ "$blockquote-small-color: $gray-light !default;" & @CRLF & _ "//** Blockquote font size" & @CRLF & _ "$blockquote-font-size: ($font-size-base * 1.25) !default;" & @CRLF & _ "//** Blockquote border color" & @CRLF & _ "$blockquote-border-color: $gray-lighter !default;" & @CRLF & _ "//** Page header border color" & @CRLF & _ "$page-header-border-color: $gray-lighter !default;" & @CRLF & _ "//** Width of horizontal description list titles" & @CRLF & _ "$dl-horizontal-offset: $component-offset-horizontal !default;" & @CRLF & _ "//** Point at which .dl-horizontal becomes horizontal" & @CRLF & _ "$dl-horizontal-breakpoint: $grid-float-breakpoint !default;" & @CRLF & _ "//** Horizontal line color." & @CRLF & _ "$hr-border: $gray-lighter !default;" & @CRLF & _ "" Local $aArray = StringRegExp($sString, $sRegex, $STR_REGEXPARRAYGLOBALFULLMATCH) Local $aFullArray[0] For $i = 0 To UBound($aArray) -1 _ArrayConcatenate($aFullArray, $aArray[$i]) Next $aArray = $aFullArray ; Present the entire match result _ArrayDisplay($aArray, "Result")

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 AutoIt, please visit: https://www.autoitscript.com/autoit3/docs/functions/StringRegExp.htm