Skip to content

Commit 5df74f5

Browse files
authored
Merge pull request #85 from StraToN/fix-issue-83
Fix regex demo after godot commit e3e2f06
2 parents b2d228e + bc672d8 commit 5df74f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

misc/regex/regex.gd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ func update_text():
1212
child.queue_free()
1313
if regex.is_valid():
1414
var matches = regex.search($Text.get_text())
15-
for result in matches.get_group_array():
15+
for result in matches.get_strings():
1616
var label = Label.new()
1717
label.text = result
1818
$List.add_child(label)

0 commit comments

Comments
 (0)