Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

get first word of a string before space flutter

String value = 'The text is this';
value = value.split(' ').first; 
print(value)// output: The
 
PREVIOUS NEXT
Tagged: #word #string #space #flutter
ADD COMMENT
Topic
Name
1+2 =