[^=]+$
------
[^=]+$
Options: Case sensitive; Exact spacing; Dot doesn’t match line breaks; ^$ don’t match at line breaks; Greedy quantifiers; Regex syntax only
* [Match any character that is NOT a “=”][1] `[^=]+`
* [Between one and unlimited times, as many times as possible, giving back as needed (greedy)][2] `+`
* [Assert position at the end of the string, or before the line break at the end of the string, if any (line feed)][3] `$`
Created with [RegexBuddy](
https://www.regexbuddy.com/)
[1]:
https://www.regular-expressions.info/characters.html[2]:
https://www.regular-expressions.info/repeat.html[3]:
https://www.regular-expressions.info/anchors.html